diff options
Diffstat (limited to 'src/commands/meme/create.rs')
| -rw-r--r-- | src/commands/meme/create.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/commands/meme/create.rs b/src/commands/meme/create.rs index c6ed9c6..2d0ee9a 100644 --- a/src/commands/meme/create.rs +++ b/src/commands/meme/create.rs @@ -52,6 +52,7 @@ pub async fn addmeme( let save_result = NewMeme { title, + guild: util::guild_id(ctx)?.get() as _, content: text, image_id, audio_id: None, @@ -177,6 +178,7 @@ pub async fn addaudiomeme( let save_result = NewMeme { title, content: text, + guild: util::guild_id(ctx)?.get() as _, image_id, audio_id: Some(audio_id), metadata_id: 0, |
