This commit is contained in:
Horis
2026-01-05 10:45:08 +08:00
parent 59a0cec2b1
commit d174aa9319
@@ -86,7 +86,6 @@ object CacheManager {
}
val cache = appDb.cacheDao.get(key)
if (cache != null && (cache.deadline == 0L || cache.deadline > System.currentTimeMillis())) {
putMemory(key, cache.value ?: "")
return cache.value
}
return null