commit 64876576b6f551b998a0666102666b92d210ad63
Author: Wim <wim@42.be>
Date: Tue Sep 20 23:18:51 2016 +0000
diff --git a/bridge/config/config.go b/bridge/config/config.go
index e3b7b52..290108a 100644
--- a/bridge/config/config.go
+++ b/bridge/config/config.go
@@ -687 +687 @@ type Config struct {
func NewConfig(cfgfile string) *Config {
var cfg Config
- if _, err := toml.DecodeFile("matterbridge.toml", &cfg); err != nil {
+ if _, err := toml.DecodeFile(cfgfile, &cfg); err != nil {
log.Fatal(err)
}
return &cfg