Ignore errors in NewGomuks()

This commit is contained in:
Tulir Asokan 2018-04-01 10:25:15 +03:00
parent dd89fa621d
commit 1e082f9715

View File

@ -62,10 +62,10 @@ func NewGomuks(enableDebug, forceExternalDebug bool) *Gomuks {
gmx.config.Load()
if len(gmx.config.UserID) > 0 {
gmx.config.LoadSession(gmx.config.UserID)
_ = gmx.config.LoadSession(gmx.config.UserID)
}
gmx.matrix.InitClient()
_ = gmx.matrix.InitClient()
main := gmx.ui.InitViews()
if enableDebug {
@ -86,7 +86,7 @@ func NewGomuks(enableDebug, forceExternalDebug bool) *Gomuks {
func (gmx *Gomuks) Save() {
if gmx.config.Session != nil {
gmx.debug.Print("Saving session...")
gmx.config.Session.Save()
_ = gmx.config.Session.Save()
}
gmx.debug.Print("Saving history...")
gmx.ui.MainView().SaveAllHistory()