Skip to content

Commit 8e6404e

Browse files
committed
Fix size value not updated
1 parent 6fb9b81 commit 8e6404e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Files/ViewModels/ItemViewModel.cs

+1
Original file line numberDiff line numberDiff line change
@@ -2091,6 +2091,7 @@ await CoreApplication.MainView.DispatcherQueue.EnqueueAsync(() =>
20912091

20922092
if (result.Value.Size.HasValue)
20932093
{
2094+
item.FileSizeBytes = result.Value.Size.Value;
20942095
item.FileSize = ByteSizeLib.ByteSize.FromBytes(item.FileSizeBytes).ToBinaryString().ConvertSizeAbbreviation();
20952096
}
20962097
}

0 commit comments

Comments
 (0)