Skip to content

Commit

Permalink
chore: continued changes to file URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
insertish committed Dec 23, 2024
1 parent 692e49c commit 89b67ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/classes/UserProfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ export class UserProfile {
* URL to the user's banner
*/
get bannerURL() {
return this.banner?.createFileURL({ width: 1000 });
return this.banner?.createFileURL();
}

/**
* URL to the user's animated banner
*/
get animatedBannerURL() {
return this.banner?.createFileURL({ width: 1000 }, true);
return this.banner?.createFileURL(true);
}
}

0 comments on commit 89b67ba

Please sign in to comment.