Skip to content

Commit

Permalink
[bug] Make up previous commits
Browse files Browse the repository at this point in the history
  • Loading branch information
Banyc committed Apr 3, 2021
1 parent 9e238fd commit f624304
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/SharerBlazorServer/Models/FileSliceInfoModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ public string FileSizeHumanReadable {
return GetHumanReadableSize(this.FileSize);
}
}

[JsonIgnore]
public string EndHumanReadable
{
Expand All @@ -30,6 +29,9 @@ public string EndHumanReadable
return GetHumanReadableSize(this.End);
}
}
// image data url
[JsonIgnore]
public string Thumbnail { get; set; }

private static string GetHumanReadableSize(int byteSize)
{
Expand Down

0 comments on commit f624304

Please sign in to comment.