From ed6704a498e7ee59f83d31a64ca48dbe5c5a11f7 Mon Sep 17 00:00:00 2001 From: Horis <8674809+821938089@users.noreply.github.com> Date: Fri, 9 Jan 2026 11:27:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=20#5648?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/io/legado/app/help/source/SourceVerificationHelp.kt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/io/legado/app/help/source/SourceVerificationHelp.kt b/app/src/main/java/io/legado/app/help/source/SourceVerificationHelp.kt index 80b514365..f344407a7 100644 --- a/app/src/main/java/io/legado/app/help/source/SourceVerificationHelp.kt +++ b/app/src/main/java/io/legado/app/help/source/SourceVerificationHelp.kt @@ -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) {