Restore Engrish function names to normal English.

This commit is contained in:
Eugene Bujak
2018-11-27 21:30:11 +03:00
parent 701fd10c1c
commit 70c5afd6a5
2 changed files with 9 additions and 11 deletions

4
app.go
View File

@@ -156,7 +156,7 @@ func main() {
// Update filters we've just loaded right away, don't wait for periodic update timer
go func() {
checkFiltersUpdates(false)
refreshFiltersIfNeccessary(false)
// Save the updated config
err := writeConfig()
if err != nil {
@@ -177,7 +177,7 @@ func main() {
address := net.JoinHostPort(config.BindHost, strconv.Itoa(config.BindPort))
runFiltersUpdatesTimer()
go periodicallyRefreshFilters()
http.Handle("/", optionalAuthHandler(http.FileServer(box)))
registerControlHandlers()