From a13f78cdd55e7d8fe515c0aab295ed39aadf6922 Mon Sep 17 00:00:00 2001 From: Elias Projahn Date: Wed, 3 Jun 2020 19:13:05 +0200 Subject: [PATCH] client: Make database client reference modifiable --- client/lib/src/database.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/lib/src/database.dart b/client/lib/src/database.dart index 66e4058..d6447a9 100644 --- a/client/lib/src/database.dart +++ b/client/lib/src/database.dart @@ -23,7 +23,7 @@ class MusicusClientDatabase extends _$MusicusClientDatabase { /// The client to use for synchronization. /// /// This may be null indicating that everything should be kept local. - final MusicusClient client; + MusicusClient client; @override int get schemaVersion => 1;