Files
core/Common/3dParty/libvlc/tools/ignore-cache-time.patch
2025-09-03 20:44:16 +04:00

15 lines
598 B
Diff

diff --git a/src/modules/bank.c b/src/modules/bank.c
index 52037d5b59..f0efbce5f3 100644
--- a/src/modules/bank.c
+++ b/src/modules/bank.c
@@ -279,8 +279,7 @@ static int AllocatePluginFile (module_bank_t *bank, const char *abspath,
plugin = vlc_cache_lookup(&bank->cache, relpath);
if (plugin != NULL
- && (plugin->mtime != (int64_t)st->st_mtime
- || plugin->size != (uint64_t)st->st_size))
+ && plugin->size != (uint64_t)st->st_size)
{
msg_Err(bank->obj, "stale plugins cache: modified %s",
plugin->abspath);