fix: typo isAuthenticate -> isAuthenticated

This commit is contained in:
2024-02-13 14:07:53 +01:00
parent d773859e04
commit 94a4c4cdf8
9 changed files with 10 additions and 10 deletions

View File

@ -44,7 +44,7 @@ export default class extends AbstractView {
async blockButton() {
// Block option
if (await client.isAuthenticate() === false)
if (await client.isAuthenticated() === false)
return;
if (client.me.id != this.user_id) {
@ -72,7 +72,7 @@ export default class extends AbstractView {
}
async friendButton() {
if (await client.isAuthenticate() === false)
if (await client.isAuthenticated() === false)
return;
if (client.me.id != this.user_id) {