aboutsummaryrefslogtreecommitdiff
path: root/setup/config/config_roomserver.go
diff options
context:
space:
mode:
Diffstat (limited to 'setup/config/config_roomserver.go')
-rw-r--r--setup/config/config_roomserver.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup/config/config_roomserver.go b/setup/config/config_roomserver.go
index 73abb4f4..8a322734 100644
--- a/setup/config/config_roomserver.go
+++ b/setup/config/config_roomserver.go
@@ -20,5 +20,7 @@ func (c *RoomServer) Defaults(generate bool) {
func (c *RoomServer) Verify(configErrs *ConfigErrors, isMonolith bool) {
checkURL(configErrs, "room_server.internal_api.listen", string(c.InternalAPI.Listen))
checkURL(configErrs, "room_server.internal_ap.bind", string(c.InternalAPI.Connect))
- checkNotEmpty(configErrs, "room_server.database.connection_string", string(c.Database.ConnectionString))
+ if c.Matrix.DatabaseOptions.ConnectionString == "" {
+ checkNotEmpty(configErrs, "room_server.database.connection_string", string(c.Database.ConnectionString))
+ }
}