mirror of
https://github.com/moraroy/NonSteamLaunchers-On-Steam-Deck.git
synced 2026-06-13 04:04:59 +03:00
Fix string formatting in detect_browser_name function
This commit is contained in:
+1
-1
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user