Skip to content

Commit 17722b2

Browse files
committed
fix(Core): use ThumbnailURL before URL
1 parent b6b6aa8 commit 17722b2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SnapX.Core/History/HistoryItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public string? BestImageSource
7575
if (!string.IsNullOrWhiteSpace(FilePath) && File.Exists(FilePath))
7676
return FilePath;
7777

78-
return URL ?? ThumbnailURL;
78+
return ThumbnailURL ?? URL;
7979
}
8080
}
8181

0 commit comments

Comments
 (0)