diff options
author | 2021-08-18 15:44:12 +0100 | |
---|---|---|
committer | 2021-08-18 15:44:12 +0100 | |
commit | b83a31c33f7dc0dc6a2dfcce74f2d352e37509ce (patch) | |
tree | 7cfd4f3b4ec48c499d0b0d9a1474aee54bd3776d | |
parent | Linting compliance (diff) |
Edit message using direct message instead of helper method
-rw-r--r-- | arthur/exts/cloudflare/zones.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arthur/exts/cloudflare/zones.py b/arthur/exts/cloudflare/zones.py index f1686bc..7f9ca35 100644 --- a/arthur/exts/cloudflare/zones.py +++ b/arthur/exts/cloudflare/zones.py @@ -51,7 +51,7 @@ class ZonesView(discord.ui.View): self.disable_select() - await interaction.edit_original_message(view=self) + await interaction.message.edit(view=self) await interaction.response.send_message(message) |