From dda5878407bc6ed1de48adadba776b2ca7a9a18a Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Mon, 8 Nov 2021 19:44:34 +0000 Subject: [PATCH] Closes #1452 --- src/transformers/application.ts | 2 +- src/types/applications/application.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/transformers/application.ts b/src/transformers/application.ts index c58cd7c1c..1336b8f67 100644 --- a/src/transformers/application.ts +++ b/src/transformers/application.ts @@ -66,5 +66,5 @@ export interface DiscordenoApplication { /** If this application is a game sold on Discord, this field will be the hash of the image on store embeds */ coverImage?: string; /** The application's public flags */ - flags: DiscordApplicationFlags; + flags?: DiscordApplicationFlags; } diff --git a/src/types/applications/application.ts b/src/types/applications/application.ts index 904901286..d0423450e 100644 --- a/src/types/applications/application.ts +++ b/src/types/applications/application.ts @@ -39,5 +39,5 @@ export interface Application { /** If this application is a game sold on Discord, this field will be the hash of the image on store embeds */ coverImage?: string; /** The application's public flags */ - flags: DiscordApplicationFlags; + flags?: DiscordApplicationFlags; }