Fixed sale count for steam offers

This commit is contained in:
Sven Heidemann 2023-11-03 14:54:25 +01:00
parent 7a0f29f557
commit b21c9f894f

View File

@ -113,6 +113,8 @@ class SteamOfferWatcher(TaskABC):
# todo: let admins change the value
self._logger.debug(__name__, f"Get special offers from 0 to {sale_count}")
for i in range(0, sale_count, 100):
if i > sale_count:
break
new_offers.extend(self._get_games_from_page(i, 100))
self._logger.debug(__name__, f"Got {new_offers.count()} offers")