We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5debdbe commit 05f5d2bCopy full SHA for 05f5d2b
packages/structures/src/application/Application.ts
@@ -58,7 +58,7 @@ export class Application<Omitted extends keyof APIApplication | '' = ''> extends
58
*/
59
public iconURL(format: ApplicationIconFormat = ImageFormat.WebP) {
60
return isIdSet(this[kData].id) && isFieldSet(this[kData], 'icon', 'string')
61
- ? `${RouteBases.cdn}${CDNRoutes.applicationCover(this[kData].id.toString(), this[kData].icon, format)}`
+ ? `${RouteBases.cdn}${CDNRoutes.applicationIcon(this[kData].id.toString(), this[kData].icon, format)}`
62
: null;
63
}
64
0 commit comments