No Ox for headline.

This commit is contained in:
Martin Dosch 2023-08-11 15:19:03 +02:00
parent 2f76178a22
commit 487be9c845
No known key found for this signature in database
GPG Key ID: 52A57CFCE13D657D
2 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,7 @@
### Changed
- Properly close connection to server if ^C is pressed in interactive mode.
- Replace invalid characters by UTF8 replacement char.
- Add warning that there is no Ox support for messages of type headline.
## [v0.6.1] 2023-07-25
### Changed

View File

@ -153,6 +153,8 @@ func main() {
" http upload.")
case *flagOx && *flagOOBFile != "":
log.Fatal("No encryption possible for OOB data.")
case *flagOx && *flagHeadline:
log.Fatal("No Ox support for headline messages.")
case *flagHeadline && *flagChatroom:
log.Fatal("Can't use message type headline for groupchat messages.")
}