mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-10 15:14:36 +00:00
Fix #842
This commit is contained in:
parent
714959126b
commit
ee8e167844
1 changed files with 1 additions and 1 deletions
|
@ -42,6 +42,6 @@ func NewDatabase(dataSourceName string) (Database, error) {
|
|||
case "postgres":
|
||||
return postgres.NewDatabase(dataSourceName)
|
||||
default:
|
||||
return errors.New("unknown schema")
|
||||
return nil, errors.New("unknown schema")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue