clean: respect es11

This commit is contained in:
2024-02-20 09:22:11 +01:00
parent 54ef19a340
commit c143d96443
36 changed files with 163 additions and 163 deletions

View File

@ -9,7 +9,7 @@ class MyProfile extends Profile
*/
constructor (client)
{
super(client, "../me")
super(client, "../me");
}
/**
@ -20,11 +20,11 @@ class MyProfile extends Profile
async change_avatar(form_data)
{
let response = await this.client._patch_file(`/api/profiles/settings`, form_data);
let response_data = await response.json()
let response_data = await response.json();
return response_data;
}
}
export {MyProfile}
export {MyProfile};