Skip to content

Commit b719698

Browse files
authored
Merge pull request #12070 from SubtitleEdit/fix/original-dirty-hash-filename
Fix original-subtitle dirty hash using object ToString instead of file name
2 parents 8239a4f + 560088f commit b719698

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ui/Features/Main/MainViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17747,7 +17747,7 @@ public int GetFastHash()
1774717747
public int GetFastHashOriginal()
1774817748
{
1774917749
_subtitleOriginal ??= new Subtitle();
17750-
var pre = _subtitleOriginal + SelectedEncoding.DisplayName;
17750+
var pre = _subtitleFileNameOriginal + SelectedEncoding.DisplayName;
1775117751

1775217752
unchecked
1775317753
{

0 commit comments

Comments
 (0)