Skip to content

Commit c5d0445

Browse files
authored
Wierd steam shortcut bug part 2
1 parent 49e22cc commit c5d0445

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

faugus-launcher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2424,7 +2424,7 @@ def add_game_to_steam(title, game_directory, icon, command):
24242424
def remove_shortcuts(shortcuts, title):
24252425
# Find and remove existing shortcuts with the same title
24262426
if os.path.exists(steam_shortcuts_path):
2427-
to_remove = [app_id for app_id, game in shortcuts["shortcuts"].items() if game["AppName"] == title]
2427+
to_remove = [app_id for app_id, game in shortcuts["shortcuts"].items() if isinstance(game, dict) and "AppName" in game and game["AppName"] == title]
24282428
for app_id in to_remove:
24292429
del shortcuts["shortcuts"][app_id]
24302430
save_shortcuts(shortcuts)

0 commit comments

Comments
 (0)