From 265457b45171dcae96a1aac9454e3bda2cd0557a Mon Sep 17 00:00:00 2001 From: Wim Date: Tue, 19 Dec 2017 23:15:03 +0100 Subject: Refactor and add MediaDownloadSize to General --- bridge/matrix/matrix.go | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'bridge/matrix') diff --git a/bridge/matrix/matrix.go b/bridge/matrix/matrix.go index dee301be..03e493f7 100644 --- a/bridge/matrix/matrix.go +++ b/bridge/matrix/matrix.go @@ -15,12 +15,10 @@ import ( type Bmatrix struct { mc *matrix.Client - Config *config.Protocol - Remote chan config.Message - Account string UserID string RoomMap map[string]string sync.RWMutex + *config.BridgeConfig } var flog *log.Entry @@ -30,12 +28,9 @@ func init() { flog = log.WithFields(log.Fields{"module": protocol}) } -func New(cfg config.Protocol, account string, c chan config.Message) *Bmatrix { - b := &Bmatrix{} +func New(cfg *config.BridgeConfig) *Bmatrix { + b := &Bmatrix{BridgeConfig: cfg} b.RoomMap = make(map[string]string) - b.Config = &cfg - b.Account = account - b.Remote = c return b } -- cgit v1.2.3