aboutsummaryrefslogtreecommitdiff
path: root/federationsender/storage/storage_wasm.go
diff options
context:
space:
mode:
Diffstat (limited to 'federationsender/storage/storage_wasm.go')
-rw-r--r--federationsender/storage/storage_wasm.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/federationsender/storage/storage_wasm.go b/federationsender/storage/storage_wasm.go
index f2c8ae1b..44d4c806 100644
--- a/federationsender/storage/storage_wasm.go
+++ b/federationsender/storage/storage_wasm.go
@@ -18,11 +18,15 @@ import (
"fmt"
"net/url"
+ "github.com/matrix-org/dendrite/common"
"github.com/matrix-org/dendrite/federationsender/storage/sqlite3"
)
// NewDatabase opens a new database
-func NewDatabase(dataSourceName string) (Database, error) {
+func NewDatabase(
+ dataSourceName string,
+ dbProperties common.DbProperties, // nolint:unparam
+) (Database, error) {
uri, err := url.Parse(dataSourceName)
if err != nil {
return nil, fmt.Errorf("Cannot use postgres implementation")