default function parameter

This commit is contained in:
minibox24 2020-12-03 11:35:52 +09:00
parent 9c42916cd2
commit cdd874275e
1 changed files with 1 additions and 2 deletions

View File

@ -40,10 +40,9 @@ export class User extends Base {
return `<@${this.id}>`
}
avatarURL(format?: ImageFormats, size?: ImageSize, dynamic?: boolean) {
avatarURL(format?: ImageFormats, size?: ImageSize, dynamic: boolean = true) {
if (!format) format = 'webp'
if (!size) size = 512
if (dynamic === undefined) dynamic = true
return this.avatar
? `${ImageURL(USER_AVATAR(this.id, dynamic ? this.avatar : this.avatar.replace('a_', '')), format, size)}`