mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-19 20:54:20 +01:00
fix file modification date comparisons (#14503)
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user