chore: continued changes to file URLs

This commit is contained in:
Paul Makles
2024-12-23 22:02:58 +00:00
parent 692e49c84a
commit 89b67bab3b
+2 -2
View File
@@ -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);
}
}