(self)
| 1212 | self.pausedTimer.start(constants.WARNING_OSD_MESSAGES_LOOP_INTERVAL, True) |
| 1213 | |
| 1214 | def checkWarnings(self): |
| 1215 | if self._client.autoplayConditionsMet(): |
| 1216 | return |
| 1217 | self._checkIfYouReAloneInTheRoom(OSDOnly=False) |
| 1218 | self._checkRoomForSameFiles(OSDOnly=False) |
| 1219 | self.checkReadyStates() |
| 1220 | |
| 1221 | def _checkRoomForSameFiles(self, OSDOnly): |
| 1222 | if not self._userlist.areAllFilesInRoomSame(): |
no test coverage detected