aboutsummaryrefslogtreecommitdiff
path: root/matrix/matrix.go
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2020-02-20 00:25:16 +0200
committerTulir Asokan <tulir@maunium.net>2020-02-20 00:40:59 +0200
commit8a0a3a6487bafbbcd3e0ae630b7ba95bf8ce76ce (patch)
tree38a69e205cb689929d786c2c382745e9fc090144 /matrix/matrix.go
parentb6e20af056ff9968d6493cca7a8471b2d873281e (diff)
Improve login view and add .well-known resolution
Diffstat (limited to 'matrix/matrix.go')
-rw-r--r--matrix/matrix.go2
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 {