diff options
author | Tulir Asokan <tulir@maunium.net> | 2020-02-20 00:25:16 +0200 |
---|---|---|
committer | Tulir Asokan <tulir@maunium.net> | 2020-02-20 00:40:59 +0200 |
commit | 8a0a3a6487bafbbcd3e0ae630b7ba95bf8ce76ce (patch) | |
tree | 38a69e205cb689929d786c2c382745e9fc090144 /matrix | |
parent | b6e20af056ff9968d6493cca7a8471b2d873281e (diff) |
Improve login view and add .well-known resolution
Diffstat (limited to 'matrix')
-rw-r--r-- | matrix/matrix.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/matrix/matrix.go b/matrix/matrix.go index 43141b0..c75355a 100644 --- a/matrix/matrix.go +++ b/matrix/matrix.go @@ -89,7 +89,7 @@ func (log mxLogger) Debugfln(message string, args ...interface{}) { // InitClient initializes the mautrix client and connects to the homeserver specified in the config. func (c *Container) InitClient() error { if len(c.config.HS) == 0 { - return fmt.Errorf("no homeserver in config") + return fmt.Errorf("no homeserver entered") } if c.client != nil { |