ffi: Add is_threaded method to timeline Message object

This commit is contained in:
Jonas Platte
2023-09-07 16:07:54 +02:00
committed by Jonas Platte
parent 36942e4f22
commit e655490b9f

View File

@@ -543,6 +543,10 @@ impl Message {
self.0.in_reply_to().map(InReplyToDetails::from)
}
pub fn is_threaded(&self) -> bool {
self.0.is_threaded()
}
pub fn is_edited(&self) -> bool {
self.0.is_edited()
}