This commit is contained in:
Timmy Welch 2024-12-24 21:17:59 -08:00
parent 4d767f026a
commit d011975fd0
2 changed files with 2 additions and 2 deletions

View File

@ -148,7 +148,7 @@ class IssueSelectionWindow(SeriesSelectionWindow):
QtWidgets.QApplication.setOverrideCursor(QtGui.QCursor(QtCore.Qt.CursorShape.WaitCursor))
try:
issue = self.talker.fetch_comic_data(
issue_id=self.issue_id, on_rate_limit=RLCallBack(self.ratelimit, 10)
issue_id=self.issue_id, on_rate_limit=RLCallBack(self.on_ratelimit, 10)
)
except TalkerError:
pass

View File

@ -332,7 +332,7 @@ class SeriesSelectionWindow(QtWidgets.QDialog):
):
QtWidgets.QApplication.setOverrideCursor(QtGui.QCursor(QtCore.Qt.CursorShape.WaitCursor))
try:
series = self.talker.fetch_series(self.series_id, on_rate_limit=RLCallBack(self.ratelimit, 10))
series = self.talker.fetch_series(self.series_id, on_rate_limit=RLCallBack(self.on_ratelimit, 10))
except TalkerError:
pass
self.set_description(self.teDescription, series.description or "")