1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

use new function name introduced in merge

This commit is contained in:
John Harrington
2025-12-04 15:54:55 -07:00
parent 02aa275be9
commit 00689b76ed

View File

@@ -65,7 +65,7 @@ impl InstalledBrowserRetriever for DefaultInstalledBrowserRetriever {
browsers.push((*browser).to_string());
} else {
// When not in sandbox check file system directly
let data_dir = get_browser_data_dir(config)?;
let data_dir = get_and_validate_data_dir(config)?;
if data_dir.exists() {
browsers.push((*browser).to_string());
}