1
0
Fork 0
mirror of synced 2024-05-18 19:42:54 +12:00

RareGameBase: Also look for the EA app when identifying origin games

This commit is contained in:
loathingKernel 2023-12-30 18:35:37 +02:00
parent e467dc996c
commit 1914beb5e6

View file

@ -154,9 +154,7 @@ class RareGameBase(QObject):
@return bool If the game is an Origin game
"""
return (
self.game.metadata.get("customAttributes", {}).get("ThirdPartyManagedApp", {}).get("value") == "Origin"
)
return self.game.third_party_store in {"Origin", "the EA app"}
@property
def is_overlay(self):