diff options
Diffstat (limited to 'src/controller.rs')
-rw-r--r-- | src/controller.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controller.rs b/src/controller.rs index 90d2d26..9127900 100644 --- a/src/controller.rs +++ b/src/controller.rs @@ -172,7 +172,7 @@ fn parse_identities(repo: &Repository) -> Option<Identities> { let tree = commit.tree().ok()?; let entry = tree.get_path(Path::new("users.toml")).ok()?; let blob = repo.find_blob(entry.id()).ok()?; - toml::from_slice(blob.content()).ok()? + toml::from_slice(blob.content()).ok() } impl MultiUserController { |