send out videochat-invitation message, set up fallback text

This commit is contained in:
B. Petersen
2020-07-20 12:45:53 +02:00
parent 11b369db0f
commit 29d4197340
5 changed files with 91 additions and 1 deletions

View File

@@ -638,6 +638,14 @@ impl Message {
None
}
pub async fn get_videochat_url(&self) -> Option<String> {
None
}
pub fn is_basic_videochat(&self) -> bool {
false
}
pub fn set_text(&mut self, text: Option<String>) {
self.text = text;
}