summary refs log tree commit diff
path: root/src/system/bot/mod.rs
diff options
context:
space:
mode:
authorAshelyn Rose <git@ashen.earth>2024-10-06 17:17:35 -0600
committerAshelyn Rose <git@ashen.earth>2024-10-06 17:17:35 -0600
commit4ceb1c233d48bc537a8d2aaad129abbf71d8ff81 (patch)
tree88485339cad76024c03d57a09cc00b94ba355482 /src/system/bot/mod.rs
parentec104a719f46d6812661c29355e7a9fea8418b49 (diff)
Fetches target message from API when not in cache
Diffstat (limited to 'src/system/bot/mod.rs')
-rw-r--r--src/system/bot/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/system/bot/mod.rs b/src/system/bot/mod.rs
index f0a2e45..2aa3e0a 100644
--- a/src/system/bot/mod.rs
+++ b/src/system/bot/mod.rs
@@ -70,6 +70,10 @@ impl Bot {
         self.client.fetch_message(message_id, channel_id).await
     }
 
+    pub async fn fetch_recent_channel_messages(&self, channel_id: ChannelId) -> Result<Vec<FullMessage>, TwiError> {
+        self.client.fetch_recent_channel_messages(channel_id).await
+    }
+
     pub async fn resend_message(&self, message_id: MessageId, channel_id: ChannelId) {
         self.client.resend_message(message_id, channel_id).await;
     }