mirror of
https://github.com/element-hq/element-web
synced 2024-11-21 16:55:34 +03:00
Fix picklekey debug (#12845)
https://github.com/matrix-org/matrix-react-sdk/pull/12831 added some logging, but I messed it up
This commit is contained in:
parent
02047243f0
commit
bc21ed3010
1 changed files with 1 additions and 1 deletions
|
@ -587,7 +587,7 @@ export async function restoreFromLocalStorage(opts?: { ignoreGuest?: boolean }):
|
|||
|
||||
const pickleKey = (await PlatformPeg.get()?.getPickleKey(userId, deviceId ?? "")) ?? undefined;
|
||||
if (pickleKey) {
|
||||
logger.log("Got pickle key for ${userId}|${deviceId}");
|
||||
logger.log(`Got pickle key for ${userId}|${deviceId}`);
|
||||
} else {
|
||||
logger.log("No pickle key available");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue