mirror of
https://github.com/moraroy/NonSteamLaunchers-On-Steam-Deck.git
synced 2024-11-20 16:19:19 +01:00
Duplicate Ubisoft Connect Entry made by NSLGameScanner.py
I noticed that I had two Ubisoft Connect entries every time I installed NonSteamLaunchers on my Steam Deck. I found out that it was the Battle Net scanner portion adding an 'unknown' game titled Ubisoft Connect as a duplicate entry. I ultimately found a file that was being identified. "C:/Program Files (x86)/Ubisoft/Ubisoft Game Launcher/_retail_/.flavor.info" and the "Flavor inferred was : unknown". Then it would say No exact match found. Using game ID of the first result: Ubisoft Connect (Program): 5270094. It would subsequently add all of the Battle.net information for the launch of this game - that's what lead me to the Battle.net scanner failing and leading to this. The launch parameter would be --exec=\"launch unknown\". The Launch options would be %command% \"battlenet://unknown\"" It looked like you were already working on a possible overhaul during my quick review of various issues open. Not sure if this is helpful but it fixed my duplicate entry problem. Cheers.
This commit is contained in:
parent
6177b9c363
commit
a72d748f72
@ -838,7 +838,7 @@ if not os.path.exists(registry_file_path):
|
||||
print("Battle.net game data not found. Skipping Battle.net Games Scanner.")
|
||||
else:
|
||||
game_dict = getBnetGameInfo(registry_file_path)
|
||||
if game_dict is None:
|
||||
if game_dict is None or 'unknown':
|
||||
# Skip the rest of the Battle.net scanner
|
||||
pass
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user