diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/config.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/config/config.go b/config/config.go index 3507833..e62a8bd 100644 --- a/config/config.go +++ b/config/config.go @@ -78,16 +78,15 @@ type Config struct { } // NewConfig creates a config that loads data from the given directory. -func NewConfig(configDir, cacheDir string) *Config { - home, _ := os.UserHomeDir() +func NewConfig(configDir, cacheDir, downloadDir string) *Config { return &Config{ Dir: configDir, CacheDir: cacheDir, + DownloadDir: downloadDir, HistoryPath: filepath.Join(cacheDir, "history.db"), RoomListPath: filepath.Join(cacheDir, "rooms.gob.gz"), StateDir: filepath.Join(cacheDir, "state"), MediaDir: filepath.Join(cacheDir, "media"), - DownloadDir: home, RoomCacheSize: 32, RoomCacheAge: 1 * 60, |