Skip to content

Commit

Permalink
Fix desktop database path retrieval
Browse files Browse the repository at this point in the history
  • Loading branch information
vitusortner committed Jan 5, 2021
1 parent 5d9c888 commit b72be61
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 b72be61

Please sign in to comment.