same problem for Android and Apple

This commit is contained in:
nothingTVatYT
2023-12-28 22:36:33 +01:00
parent 8174e8ab77
commit 21c4667f8c
2 changed files with 2 additions and 2 deletions

View File

@@ -498,7 +498,7 @@ DateTime AppleFileSystem::GetFileLastEditTime(const StringView& path)
return DateTime::MinValue();
}
const TimeSpan timeSinceEpoch(0, 0, fileInfo.st_mtime);
const TimeSpan timeSinceEpoch(0, 0, 0, fileInfo.st_mtime);
return UnixEpoch + timeSinceEpoch;
}