Skip to content
Snippets Groups Projects
Unverified Commit c6c68739 authored by Mar0xy's avatar Mar0xy
Browse files

chore: change const to let

parent db6dc1b5
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ export class ApiAccountMastodon {
public async verifyCredentials() {
try {
const data = await this.client.verifyAccountCredentials();
const acct = data.data;
let acct = data.data;
acct.id = convertId(acct.id, IdType.MastodonId);
acct.display_name = acct.display_name || acct.username;
acct.url = `${this.BASE_URL}/@${acct.url}`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment