clean: respect es11
This commit is contained in:
@ -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};
|
||||
|
Reference in New Issue
Block a user