Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.

Commit 82e2a26

Browse files
[Linux] Fix library load path
1 parent 6ecc1e1 commit 82e2a26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/bindings/libsodium.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ DynamicLibrary _load() {
2020
if (Platform.isLinux) {
2121
// assuming user installed libsodium as per the installation instructions
2222
// see also https://libsodium.gitbook.io/doc/installation
23-
return DynamicLibrary.open('/usr/local/lib/libsodium.so');
23+
return DynamicLibrary.open('libsodium.so.23');
2424
}
2525
if (Platform.isWindows) {
2626
// assuming user installed libsodium as per the installation instructions

0 commit comments

Comments
 (0)