1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-29 14:43:31 +00:00

fix syntax error

This commit is contained in:
John Harrington
2025-12-15 09:29:23 -07:00
parent 1a018fb687
commit 4e9ed04817

View File

@@ -179,8 +179,9 @@ async fn is_browser_installed(browser_name: &str) -> Result<bool> {
.map(|(_, id)| *id);
let Some(bundle_id) = bundle_id else {
return Ok(true); // ok_or(true) was a review suggestion with breaking changes
return Ok(true); // ok_or(true) was a review suggestion with breaking changes
// Avoid ok_or(true): serializes Result as {"Ok": "..."} instead of string value
};
let input = CommandInput {
namespace: "chromium_importer".to_string(),