Fix incorrect cherry-pick in previous commit.

This commit is contained in:
Eugene Bujak
2018-11-29 14:56:56 +03:00
parent 2012e707d0
commit 45ae984f3b
2 changed files with 4 additions and 4 deletions

4
app.go
View File

@@ -158,7 +158,7 @@ func main() {
go func() {
refreshFiltersIfNeccessary(false)
// Save the updated config
err := writeConfig()
err := config.write()
if err != nil {
log.Fatal(err)
}
@@ -170,7 +170,7 @@ func main() {
}
// Save the updated config
err := writeConfig()
err := config.write()
if err != nil {
log.Fatal(err)
}