From e26a2c3e21ed87df271ae9f5245c57cd1e23d72c Mon Sep 17 00:00:00 2001 From: Ilya Laktyushin Date: Mon, 24 Mar 2025 13:43:20 +0400 Subject: [PATCH] Fix --- submodules/WebUI/Sources/WebAppSecureStorage.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/submodules/WebUI/Sources/WebAppSecureStorage.swift b/submodules/WebUI/Sources/WebAppSecureStorage.swift index bc7d1eeb3d..218a438178 100644 --- a/submodules/WebUI/Sources/WebAppSecureStorage.swift +++ b/submodules/WebUI/Sources/WebAppSecureStorage.swift @@ -15,7 +15,8 @@ final class WebAppSecureStorage { } static private func keyPrefix(userId: EnginePeer.Id, botId: EnginePeer.Id) -> String { - return "A\(UInt64(bitPattern: userId.toInt64()))WebBot\(UInt64(bitPattern: botId.toInt64()))Key_" + return "WebBot\(UInt64(bitPattern: botId.toInt64()))Key_" + //return "A\(UInt64(bitPattern: userId.toInt64()))WebBot\(UInt64(bitPattern: botId.toInt64()))Key_" } static private func makeQuery(userId: EnginePeer.Id, botId: EnginePeer.Id, key: String) -> [String: Any] {