Remove useless comparison to true.

This commit is contained in:
Chris Laprun
2018-11-23 14:25:37 +01:00
parent 28f868dc26
commit 5042cd1d80

View File

@@ -51,7 +51,7 @@ func main() {
if err != nil {
util.CheckError(err, "")
}
if cfg.GetUpdateNotification() == true {
if cfg.GetUpdateNotification() {
updateInfo := make(chan string)
go version.GetLatestReleaseInfo(updateInfo)