diff options
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 { |