fix(windows): Make sure we look at the correct path when searching the sqlite3 dll

Took 23 minutes
This commit is contained in:
MTRNord 2020-10-22 12:08:11 +02:00
parent 16dd5164ba
commit 986c03e45f
No known key found for this signature in database
GPG Key ID: 24246E46C46C8623
1 changed files with 3 additions and 2 deletions

View File

@ -77,8 +77,9 @@ Future<Database> constructDb(
}
DynamicLibrary _openOnWindows() {
final script = File(Platform.script.toFilePath());
final libraryNextToScript = File('${script.path}/sqlite3.dll');
final exe_path = File(
Platform.resolvedExecutable.replaceAll(RegExp(r'fluffychat.exe'), ''));
final libraryNextToScript = File('${exe_path.path}/sqlite3.dll');
return DynamicLibrary.open(libraryNextToScript.path);
}