mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-22 12:13:48 +01:00
fix(client): fix syntax error of pages/follow.vue
This commit is contained in:
parent
be526e7424
commit
4aa2257fed
@ -27,7 +27,9 @@ async function follow(user): Promise<void> {
|
||||
}
|
||||
|
||||
const acct = new URL(location.href).searchParams.get('acct');
|
||||
if (acct == null) return;
|
||||
if (acct == null) {
|
||||
throw new Error('acct required');
|
||||
}
|
||||
|
||||
let promise;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user