diff options
author | Alex Auvolat <alex@adnab.me> | 2020-02-28 22:08:18 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-02-28 22:08:18 +0100 |
commit | 708bd14e994765e818eb835da0bc0799e3e67ccd (patch) | |
tree | ed3f02e69510c1709de535b315990ac669ef183d /account.go | |
parent | 2444302510e2e26a71802d134c9440511900e06a (diff) | |
download | easybridge-708bd14e994765e818eb835da0bc0799e3e67ccd.tar.gz easybridge-708bd14e994765e818eb835da0bc0799e3e67ccd.zip |
Fixes
Diffstat (limited to 'account.go')
-rw-r--r-- | account.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -159,7 +159,7 @@ func LoadDbAccounts(mxid string, key *[32]byte) { err = SetAccount(mxid, acct.Name, acct.Protocol, config) if err != nil { - ezbrSystemSendf("Could not setup account %s: %s", acct.Name, err.Error()) + ezbrSystemSendf(mxid, "Could not setup account %s: %s", acct.Name, err.Error()) } } } |