Skip to content

Commit

Permalink
Fix not detecting headers appended to curl request url #746
Browse files Browse the repository at this point in the history
  • Loading branch information
MoojMidge committed May 7, 2024
1 parent 654812d commit c0458d5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,10 @@ def run(self):
self.stop()
break

if ((current_file != playing_file and not (
if (not current_file.startswith(playing_file) and not (
self._context.is_plugin_path(current_file, 'play/')
and video_id_param in current_file
)) or total_time <= 0):
)) or total_time <= 0:
self.stop()
break

Expand Down

0 comments on commit c0458d5

Please sign in to comment.