Fix string formatting in detect_browser_name function

This commit is contained in:
Roy
2026-01-12 02:28:06 -08:00
committed by GitHub
parent 617476347a
commit 920793c5b4
+1 -1
View File
@@ -3167,7 +3167,7 @@ track_create_entry(os.environ.get('repaireaappshortcutdirectory'), 'Repair EA Ap
def detect_browser_name(chromedir: str, launch_opts: str) -> str:
combined = f"{chromedir} {launch_opts}".lower()
combined = f"{chromedir} {launch_opts}"
if "com.google.Chrome" in combined:
return "Google Chrome"
elif "org.mozilla.firefox" in combined: