mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2026-08-05 03:18:45 +02:00
add: togglePlayPause route
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user