summaryrefslogtreecommitdiff
path: root/app.go
diff options
context:
space:
mode:
Diffstat (limited to 'app.go')
-rw-r--r--app.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.go b/app.go
index 13d77ab..c30c3ea 100644
--- a/app.go
+++ b/app.go
@@ -567,7 +567,7 @@ func (app *App) notifyHighlight(buffer, nick, content string) {
// typing sends typing notifications to the IRC server according to the user
// input.
func (app *App) typing() {
- if app.s == nil {
+ if app.s == nil || app.cfg.NoTypings {
return
}
buffer := app.win.CurrentBuffer()