Skip to content

Commit 9c23ebc

Browse files
committed
Update HashesViewModel.cs
1 parent 16789ff commit 9c23ebc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Files.App/ViewModels/Properties/HashesViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ private async Task OnCompareFileAsync()
225225
{
226226
var result = CommonDialogService.Open_FileOpenDialog(MainWindow.Instance.WindowHandle, false, [], Environment.SpecialFolder.Desktop, out var toCompare);
227227

228-
if (!result && toCompare is not null)
228+
if (result && toCompare is not null)
229229
{
230230
var selectedFileHash = await CalculateFileHashAsync(toCompare);
231231
HashInput = selectedFileHash;

0 commit comments

Comments
 (0)