wip: new composer

This commit is contained in:
2023-10-22 15:48:06 +07:00
parent cade8c8b4c
commit b1a44f2cbf
15 changed files with 675 additions and 116 deletions

View File

@@ -52,10 +52,10 @@ export class LumeStorage {
const account = results[0];
if (typeof account.follows === 'string')
account.follows = JSON.parse(account.follows);
account.follows = JSON.parse(account.follows) ?? [];
if (typeof account.circles === 'string')
account.circles = JSON.parse(account.circles);
account.circles = JSON.parse(account.circles) ?? [];
if (typeof account.last_login_at === 'string')
account.last_login_at = parseInt(account.last_login_at);