fixed SetLoopFile

This commit is contained in:
2025-08-30 14:42:14 +02:00
parent 0a02d8ffc5
commit 95d2a1e1a4

View File

@ -26,8 +26,8 @@ func SetPlaylistPosition(socket string, index int) error {
return SetProperty(socket, "playlist-pos", index)
}
func SetLoopSong(socket string, loopSong bool) error {
return SetProperty(socket, "loop-song", loopSong)
func SetLoopFile(socket string, loopFile bool) error {
return SetProperty(socket, "loop-file", loopFile)
}
func SetLoopPlaylist(socket string, loopPlaylist bool) error {