We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2377924 commit 11c65f6Copy full SHA for 11c65f6
asyncgit/src/sync/config.rs
@@ -92,7 +92,9 @@ pub fn get_config_string_repo(
92
// gets returned when but it actually works
93
let entry_res = cfg.get_entry(key);
94
95
- let Ok(entry) = entry_res else { return Ok(None) };
+ let Ok(entry) = entry_res else {
96
+ return Ok(None);
97
+ };
98
99
if entry.has_value() {
100
Ok(entry.value().map(std::string::ToString::to_string))
0 commit comments