diff options
Diffstat (limited to 'appservice/db.go')
-rw-r--r-- | appservice/db.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appservice/db.go b/appservice/db.go index 1c68e6f..6423b95 100644 --- a/appservice/db.go +++ b/appservice/db.go @@ -125,7 +125,7 @@ func dbGetMxPmRoom(protocol string, them connector.UserID, themMxId string, usMx if must_create { name := fmt.Sprintf("%s (%s)", them, protocol) - mx_room_id, err := mxCreateDirectRoomAs(name, []string{usMxId}, themMxId) + mx_room_id, err := mxCreateDirectRoomAs([]string{usMxId}, themMxId) if err != nil { log.Printf("Could not create room for %s: %s", name, err) return "", err |