removed GetPause double

This commit is contained in:
2025-08-30 14:18:39 +02:00
parent 86c9dc0cc5
commit e5f6becf97

View File

@ -53,10 +53,6 @@ func GetPlaylist(socket string) ([]PlaylistEntry, error) {
return GetProperty[[]PlaylistEntry](socket, "playlist")
}
func GetPause(socket string) (bool, error) {
return GetProperty[bool](socket, "pause")
}
func GetPlaylistPosition(socket string) (int, error) {
return GetProperty[int](socket, "playlist-pos")
}