summaryrefslogtreecommitdiffstats
path: root/src/database
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2020-02-22 23:31:48 +0100
committerUwe Klotz <uklotz@mixxx.org>2020-02-24 23:11:04 +0100
commit2ff6e572e304704ed7d3b065a5f8707fe1fdf05c (patch)
treeddfeba7c9033b3ba152a3da4c2be85f77f71e630 /src/database
parenta893c102ba7022764ae73d10aa1a393f87e72d52 (diff)
Fix string composition
Diffstat (limited to 'src/database')
-rw-r--r--src/database/mixxxdb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/mixxxdb.cpp b/src/database/mixxxdb.cpp
index 17e53b0aee..e3a2e70cc7 100644
--- a/src/database/mixxxdb.cpp
+++ b/src/database/mixxxdb.cpp
@@ -45,7 +45,7 @@ mixxx::DbConnection::Params dbConnectionParams(
if (!absFilePath.startsWith(QChar('/'))) {
params.filePath += QChar('/');
}
- params.filePath = kUriPrefix + absFilePath;
+ params.filePath += absFilePath;
// Allow multiple connections to the same in-memory database by
// using a named connection. This is needed to make the database
// connection pool work correctly even during tests.