I updated my mpv package today and after that the script no longer functioned properly. The line mp.set_property_number("playlist-pos", playlist_pos) does not seem to reload the video, which I assume it did before. I replaced the line with mp.commandv("playlist-play-index", playlist_pos) and it's working again.
Too lazy to make a pull request, but putting this out there in case someone is looking for a fix for the same problem.
I updated my mpv package today and after that the script no longer functioned properly. The line
mp.set_property_number("playlist-pos", playlist_pos)
does not seem to reload the video, which I assume it did before. I replaced the line withmp.commandv("playlist-play-index", playlist_pos)
and it's working again.Too lazy to make a pull request, but putting this out there in case someone is looking for a fix for the same problem.