mirror of
https://github.com/Emersont1/itchio.git
synced 2026-03-11 08:54:39 +00:00
fix issues
This commit is contained in:
parent
82629660d2
commit
08a2e43f49
1 changed files with 4 additions and 1 deletions
|
|
@ -58,12 +58,15 @@ class Library:
|
|||
print(f"{title} is a purchased game.")
|
||||
i = 1
|
||||
while self.games == []:
|
||||
j = self.load_game_page(i)
|
||||
|
||||
self.games = [
|
||||
x
|
||||
for x in self.games
|
||||
if x.link == f"https://{publisher}.itch.io/{title}"
|
||||
]
|
||||
if self.load_game_page(i) == 0:
|
||||
|
||||
if j == 0:
|
||||
break
|
||||
i += 1
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue