fix file modification date comparisons (#14503)

This commit is contained in:
evan314159
2025-07-28 10:08:06 +08:00
committed by GitHub
parent 536437bbe3
commit 6f49782b7b
8 changed files with 23 additions and 13 deletions

View File

@@ -1430,9 +1430,7 @@ namespace MediaBrowser.Controller.Entities
var info = FileSystem.GetFileSystemInfo(Path);
return info.Exists
? info.LastWriteTimeUtc != DateModified
: false;
return info.Exists && this.HasChanged(info.LastWriteTimeUtc);
}
public virtual List<string> GetUserDataKeys()