1
0
Fork 0
mirror of synced 2024-05-20 04:22:58 +12:00

Fix offline mode

This commit is contained in:
lennard 2023-04-16 19:38:26 +02:00
parent 30c3dadd4d
commit 5cfd3fffe3
No known key found for this signature in database
GPG key ID: AB6010FE63C7C2B1

View file

@ -360,8 +360,9 @@ class RareCore(QObject):
QThreadPool.globalInstance().start(origin_worker)
def __post_init(self) -> None:
self.fetch_saves()
self.fetch_entitlements()
if not self.__args.offline:
self.fetch_saves()
self.fetch_entitlements()
self.resolve_origin()
def load_pixmaps(self) -> None: