This commit is contained in:
Horis
2026-01-09 11:27:27 +08:00
parent b41acb7788
commit ed6704a498
@@ -109,7 +109,10 @@ object SourceVerificationHelp {
}
fun getResult(sourceKey: String): String? {
return CacheManager.get(getVerificationResultKey(sourceKey))
val key = getVerificationResultKey(sourceKey)
val result = CacheManager.getFromMemory(key) as? String
CacheManager.deleteMemory(key)
return result
}
fun clearResult(sourceKey: String) {