use fqn
for local account instead of building manually
This commit is contained in:
parent
b74b19cc73
commit
b170a532f6
4 changed files with 5 additions and 3 deletions
|
@ -28,7 +28,7 @@
|
|||
if (!data) return;
|
||||
|
||||
account.set(parseAccount(data));
|
||||
console.log(`Logged in as @${$account.username}@${$account.host}`);
|
||||
console.log(`Logged in as ${$account.fqn}`);
|
||||
|
||||
// spin up async task to fetch notifications
|
||||
const notif_data = await api.getNotifications(
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
if (!data) return goto("/");
|
||||
|
||||
account.set(parseAccount(data));
|
||||
console.log(`Logged in as @${get(account).username}@${get(account).host}`);
|
||||
console.log(`Logged in as ${get(account).fqn}`);
|
||||
|
||||
// spin up async task to fetch notifications
|
||||
return api.getNotifications(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue