mirror of
https://github.com/sudoxnym/audiobookshelf-atv.git
synced 2026-07-15 16:32:25 +00:00
add: togglePlayPause route
This commit is contained in:
parent
793f0c05f7
commit
224e5efe48
1 changed files with 21 additions and 2 deletions
|
|
@ -583,12 +583,31 @@ class AudioPlayer: NSObject {
|
|||
|
||||
commandCenter.playCommand.isEnabled = true
|
||||
commandCenter.playCommand.addTarget { [weak self] event in
|
||||
self?.play(allowSeekBack: true)
|
||||
if (self!.isPlaying()) {
|
||||
self?.pause()
|
||||
} else {
|
||||
self?.play(allowSeekBack: true)
|
||||
}
|
||||
return .success
|
||||
}
|
||||
|
||||
commandCenter.pauseCommand.isEnabled = true
|
||||
commandCenter.pauseCommand.addTarget { [weak self] event in
|
||||
self?.pause()
|
||||
if (self!.isPlaying()) {
|
||||
self?.pause()
|
||||
} else {
|
||||
self?.play(allowSeekBack: true)
|
||||
}
|
||||
return .success
|
||||
}
|
||||
|
||||
commandCenter.togglePlayPauseCommand.isEnabled = true
|
||||
commandCenter.togglePlayPauseCommand.addTarget { [weak self] event in
|
||||
if (self!.isPlaying()) {
|
||||
self?.pause()
|
||||
} else {
|
||||
self?.play(allowSeekBack: true)
|
||||
}
|
||||
return .success
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue