aboutsummaryrefslogtreecommitdiff
path: root/gomuks.go
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2019-04-05 23:44:17 +0300
committerTulir Asokan <tulir@maunium.net>2019-04-05 23:44:17 +0300
commit7ad2103f8f2c9b7e3d12554634a68db973a05b36 (patch)
treee08c3eb377411bf6954ef24ff9205202f07e7296 /gomuks.go
parent535fbbb4f7703845bb25484f6eb67b1389f2dd61 (diff)
Move history storage to matrix package. Fixes #90
Diffstat (limited to 'gomuks.go')
-rw-r--r--gomuks.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/gomuks.go b/gomuks.go
index 3e30035..8d5ac76 100644
--- a/gomuks.go
+++ b/gomuks.go
@@ -61,8 +61,8 @@ func NewGomuks(uiProvider ifc.UIProvider) *Gomuks {
// Save saves the active session and message history.
func (gmx *Gomuks) Save() {
gmx.config.SaveAll()
- debug.Print("Saving history...")
- gmx.ui.MainView().SaveAllHistory()
+ //debug.Print("Saving history...")
+ //gmx.ui.MainView().SaveAllHistory()
}
// StartAutosave calls Save() every minute until it receives a stop signal