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>
(cherry picked from commit 20cd2c8e0d97e950d4fcab42484ce6814f4e9e7d)
  • Loading branch information
ims21 authored and teamblue-e2 committed Jan 27, 2025
1 parent 74b48f9 commit 6c112e8
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
@@ -552,7 +552,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

0 comments on commit 6c112e8

Please sign in to comment.