Ignore EOF in ReadConfig()

This commit is contained in:
Harshavardhana 2015-02-05 16:10:49 -08:00
parent 829be023d2
commit 0e8b16a55d
1 changed files with 8 additions and 1 deletions

View File

@ -2,6 +2,7 @@ package config
import ( import (
"encoding/json" "encoding/json"
"io"
"os" "os"
"path" "path"
"sync" "sync"
@ -107,7 +108,13 @@ func (c *Config) ReadConfig() error {
users := make(map[string]User) users := make(map[string]User)
decoder := json.NewDecoder(file) decoder := json.NewDecoder(file)
err = decoder.Decode(&users) err = decoder.Decode(&users)
if err != nil { switch err {
case io.EOF:
return nil
case nil:
c.Users = users
return nil
default:
return err return err
} }
c.Users = users c.Users = users