Skip to content

Commit

Permalink
Fix errors with progress dialogs in Kodi 18 anxdpanic#1000
Browse files Browse the repository at this point in the history
  • Loading branch information
MoojMidge committed Dec 1, 2024
1 parent ee4f3c8 commit 11c2f4f
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ def update(self, steps=1, position=None, message=None, **template_params):
)
self._message = message

self._dialog.update(
percent=percent,
message=self._message,
)
# Kodi 18 renamed XbmcProgressDialog.update argument line1 to message.
# Only use positional arguments to maintain compatibility
self._dialog.update(percent, self._message)

0 comments on commit 11c2f4f

Please sign in to comment.