diff options
author | Tulir Asokan <tulir@maunium.net> | 2018-03-21 18:46:19 +0200 |
---|---|---|
committer | Tulir Asokan <tulir@maunium.net> | 2018-03-21 18:46:25 +0200 |
commit | 35b6c7bd276d2a6c7f09163d757a1c3cb885da79 (patch) | |
tree | 3cda5627ce5445b0a76ee3fb72551bf326943e57 /config | |
parent | 7994c289aae7662fee9b86f9424d230c7b612b3d (diff) |
Add external debug file, refactoring and push rule parser
Diffstat (limited to 'config')
-rw-r--r-- | config/session.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/session.go b/config/session.go index de10757..2f2ff7c 100644 --- a/config/session.go +++ b/config/session.go @@ -22,6 +22,7 @@ import ( "path/filepath" "maunium.net/go/gomatrix" + "maunium.net/go/gomuks/matrix/ext" rooms "maunium.net/go/gomuks/matrix/room" "maunium.net/go/gomuks/ui/debug" ) @@ -33,7 +34,7 @@ type Session struct { NextBatch string FilterID string Rooms map[string]*rooms.Room - PushRules *gomatrix.PushRuleset + PushRules *gomx_ext.PushRuleset } func (config *Config) LoadSession(mxid string) error { |