Fixed audiobook playback issue

This commit is contained in:
Rasmus Krämer 2022-04-14 15:03:14 +02:00
parent 7fbc2dddbe
commit 0339f731ea
No known key found for this signature in database
GPG key ID: EC9E510611BFDAA2

View file

@ -67,15 +67,14 @@ public class AbsDatabase: CAPPlugin {
])
}
// We have to send a empty array or the client will break
@objc func getLocalLibraryItems(_ call: CAPPluginCall) {
call.resolve([ "value": [] ])
}
@objc func getLocalLibraryItem(_ call: CAPPluginCall) {
call.resolve([ "value": [] ])
call.resolve()
}
@objc func getLocalLibraryItemByLLId(_ call: CAPPluginCall) {
call.resolve([ "value": [] ])
call.resolve()
}
@objc func getLocalLibraryItemsInFolder(_ call: CAPPluginCall) {
call.resolve([ "value": [] ])