(self)
| 218 | self.ui.showDebugMessage("Rewinded after double-check") |
| 219 | |
| 220 | def isPlayingMusic(self): |
| 221 | if self.userlist.currentUser.file: |
| 222 | for musicFormat in constants.MUSIC_FORMATS: |
| 223 | if self.userlist.currentUser.file['name'].lower().endswith(musicFormat): |
| 224 | return True |
| 225 | |
| 226 | def seamlessMusicOveride(self): |
| 227 | return self.isPlayingMusic() and self._recentlyAdvanced() |
no outgoing calls
no test coverage detected