diff --git a/examples/feature_showcase/user_apps.rs b/examples/feature_showcase/user_apps.rs index 3abf1c5ae84..c56087db7a7 100644 --- a/examples/feature_showcase/user_apps.rs +++ b/examples/feature_showcase/user_apps.rs @@ -23,7 +23,7 @@ pub async fn everywhere(ctx: Context<'_>) -> Result<(), Error> { interaction_context = "Guild|BotDm|PrivateChannel" )] pub async fn everywhere_context(ctx: Context<'_>, msg: serenity::Message) -> Result<(), Error> { - msg.reply(ctx, "This context menu is available everywhere!") + msg.reply(ctx.http(), "This context menu is available everywhere!") .await?; Ok(()) } diff --git a/macros/src/command/mod.rs b/macros/src/command/mod.rs index c8566f1a152..a497ad9ef71 100644 --- a/macros/src/command/mod.rs +++ b/macros/src/command/mod.rs @@ -408,6 +408,7 @@ fn generate_command(mut inv: Invocation) -> Result