mirror of
https://github.com/trussed-dev/trussed-auth.git
synced 2026-06-20 04:16:21 -07:00
Fix salt path
This commit is contained in:
committed by
Robin Krahl
parent
1653e5199e
commit
1d15014d43
+1
-1
@@ -110,7 +110,7 @@ impl AuthBackend {
|
||||
global_fs: &mut impl Filestore,
|
||||
rng: &mut R,
|
||||
) -> Result<Salt, Error> {
|
||||
let path = PathBuf::from(BACKEND_DIR).join(&PathBuf::from("salt"));
|
||||
let path = PathBuf::from("salt");
|
||||
global_fs
|
||||
.read(&path, self.location)
|
||||
.or_else(|_| {
|
||||
|
||||
Reference in New Issue
Block a user