Feed more slashes to mautrix bridges when using SQLite

This makes the `sqlite://` URI match what we were using before
and what the config expects.
This commit is contained in:
Slavi Pantaleev
2020-12-23 13:33:25 +02:00
parent ea804f2f9f
commit be0c599565
3 changed files with 3 additions and 3 deletions

View File

@ -62,7 +62,7 @@ matrix_mautrix_hangouts_database_connection_string: 'postgresql://{{ matrix_maut
matrix_mautrix_hangouts_appservice_database: "{{
{
'sqlite': ('sqlite://' + matrix_mautrix_hangouts_sqlite_database_path_in_container),
'sqlite': ('sqlite:///' + matrix_mautrix_hangouts_sqlite_database_path_in_container),
'postgres': matrix_mautrix_hangouts_database_connection_string,
}[matrix_mautrix_hangouts_database_engine]
}}"