Skip to content

Commit

Permalink
Fixed movieSelected - part2 (#4178)
Browse files Browse the repository at this point in the history
Co-authored-by: ims <ims21@users.sourceforge.net>
  • Loading branch information
ims21 and ims authored Jan 26, 2025
1 parent e416fc7 commit 20cd2c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/Screens/InfoBar.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ def showMovies(self):
self.movieselection_dlg = self.session.openWithCallback(self.movieSelected, Screens.MovieSelection.MovieSelection, ref)

def movieSelected(self, service):
if service.valid():
if service is not None and service.valid():
if self.cur_service and self.cur_service != service:
resumePointsInstance.setResumePoint(self.session)
self.cur_service = service
Expand Down

0 comments on commit 20cd2c8

Please sign in to comment.