Add load encrypted seetings

This commit is contained in:
Reckless_Satoshi 2022-11-06 10:22:47 -08:00
parent eb923b4e6f
commit 9273ba098d
No known key found for this signature in database
GPG Key ID: 9C4585B561315571

View File

@ -47,6 +47,9 @@ const App = () => {
EncryptedStorage.removeItem('csrftoken'); EncryptedStorage.removeItem('csrftoken');
loadCookie('robot_token'); loadCookie('robot_token');
loadCookie('pub_key'); loadCookie('pub_key');
loadCookie('settings_fontsize_basic');
loadCookie('settings_language');
loadCookie('settings_mode');
loadCookie('enc_priv_key').then(() => injectMessageResolve(reponseId)); loadCookie('enc_priv_key').then(() => injectMessageResolve(reponseId));
}; };