(self)
| 1417 | return playlistItems |
| 1418 | |
| 1419 | def playlistChangeCheck(self): |
| 1420 | if self.updatingPlaylist: |
| 1421 | return |
| 1422 | newPlaylist = self.getPlaylistState() |
| 1423 | if newPlaylist != self.playlistState and self._syncplayClient and not self.updatingPlaylist: |
| 1424 | self.playlistState = newPlaylist |
| 1425 | self._syncplayClient.playlist.changePlaylist(newPlaylist) |
| 1426 | self._syncplayClient.fileSwitch.updateInfo() |
| 1427 | |
| 1428 | def executeCommand(self, command): |
| 1429 | self.showMessage("/{}".format(command)) |
nothing calls this directly
no test coverage detected