Skip to content

Commit

Permalink
Merge pull request #7177 from Bnyro/master
Browse files Browse the repository at this point in the history
fix: manual sponsorblock skip button not showing up
  • Loading branch information
Bnyro authored Mar 8, 2025
2 parents 6b328e1 + 2c0b43e commit 57ff91a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,7 @@ class PlayerFragment : Fragment(R.layout.fragment_player), OnlinePlayerOptions {
if (!playerController.isPlaying || !PlayerHelper.sponsorBlockEnabled) return

handler.postDelayed(this::checkForSegments, 100)
if (!PlayerHelper.sponsorBlockEnabled || !viewModel.segments.value.isNullOrEmpty()) return
if (viewModel.segments.value.isNullOrEmpty()) return

playerController.checkForSegments(
requireContext(),
Expand Down

0 comments on commit 57ff91a

Please sign in to comment.