(self)
| 579 | return ''.join([c if c not in blacklist and ord(c) >= 32 else placeholder for c in filename]) |
| 580 | |
| 581 | def writeToDb(self): |
| 582 | if not self.isPersistent(): |
| 583 | return |
| 584 | processed_playlist = getListAsMultilineString(self._playlist) |
| 585 | self._roomsDbHandle.saveRoom(self._name, processed_playlist, self._playlistIndex, self._position, self._lastSavedUpdate) |
| 586 | |
| 587 | def loadRoom(self, room): |
| 588 | name, playlist, playlistindex, position, lastupdate = room |
no test coverage detected