Skip to content

Commit

Permalink
Fix desktop database path retrieval (#475)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitusortner authored Jan 5, 2021
1 parent 5d9c888 commit cfc9e5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion floor/lib/src/sqflite_database_factory.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ final sqfliteDatabaseFactory = () {

extension DatabaseFactoryExtension on DatabaseFactory {
Future<String> getDatabasePath(final String name) async {
return join(await getDatabasesPath(), name);
return join(await this.getDatabasesPath(), name);
}
}

0 comments on commit cfc9e5b

Please sign in to comment.