mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
15 lines
598 B
Diff
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);
|