Skip to content

Commit

Permalink
Merge pull request #14 from sudosammy/dev
Browse files Browse the repository at this point in the history
quick bugfix before 2.1.0 release
  • Loading branch information
sudosammy authored Feb 14, 2019
2 parents b5b10b2 + ea9ded9 commit 0bd3ce5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libknary/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func CheckUpdate(version string, githubVersion string, githubURL string) bool {
updFail := "Could not check for updates: " + err.Error()
Printy(updFail, 2)
logger(updFail)
go sendMsg(":warning: " + updMsg)
go sendMsg(":warning: " + updFail)
return false
}

Expand All @@ -35,7 +35,7 @@ func CheckUpdate(version string, githubVersion string, githubURL string) bool {
updFail := "Could not check for updates: " + err.Error()
Printy(updFail, 2)
logger(updFail)
go sendMsg(":warning: " + updMsg)
go sendMsg(":warning: " + updFail)
return false
}

Expand Down

0 comments on commit 0bd3ce5

Please sign in to comment.