From 980a66fb4794a99ded961c7e27a848eb3be89c43 Mon Sep 17 00:00:00 2001 From: starnakin Date: Mon, 18 Dec 2023 21:27:10 +0100 Subject: [PATCH] fix: client.me --- frontend/static/js/api/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/static/js/api/client.js b/frontend/static/js/api/client.js index 7191880..ec3d54b 100644 --- a/frontend/static/js/api/client.js +++ b/frontend/static/js/api/client.js @@ -96,7 +96,7 @@ class Client async _update_logged(state) { - if (this.logged && state) + if (!this.logged && state) { this.me = new MyProfile(this); await this.me.init();