We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96e9d75 commit a6d7954Copy full SHA for a6d7954
main.go
@@ -16,7 +16,7 @@ import (
16
"gitlab.com/tslocum/cbind"
17
)
18
19
-var VERSION string = "v1.0.0"
+var VERSION string = "v1.0.1"
20
21
var sndTxt string = ""
22
var currentReceiver messages.Chat = messages.Chat{}
@@ -627,7 +627,11 @@ func (u UiHandler) NewScreen(msgs []messages.Message) {
627
textView.SetText(screen)
628
curRegions = msgs
629
if screen == "" {
630
- PrintHelp()
+ if currentReceiver.Id == "" {
631
+ PrintHelp()
632
+ } else {
633
+ PrintText("[::d] ~~~ no messages, press " + config.Config.Keymap.CommandBacklog + " to load backlog if available ~~~[::-]")
634
+ }
635
}
636
})
637
0 commit comments