1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-18 09:15:49 +00:00

Fixed forgotten err variable assignment

This commit is contained in:
Pourya Daneshvar 2016-01-24 10:24:21 +03:30
parent 7ef9a05588
commit 863ff19e1f

View File

@ -428,7 +428,7 @@ func NewContext() {
log.Fatal(4, "Fail to map Markdown settings: %v", err)
} else if err = Cfg.Section("git").MapTo(&Git); err != nil {
log.Fatal(4, "Fail to map Git settings: %v", err)
} else if Cfg.Section("cron").MapTo(&Cron); err != nil {
} else if err = Cfg.Section("cron").MapTo(&Cron); err != nil {
log.Fatal(4, "Fail to map Cron settings: %v", err)
}