@roitium/expo-orpheus 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -261,6 +261,7 @@ class ExpoOrpheusModule : Module() {
|
|
|
261
261
|
}
|
|
262
262
|
|
|
263
263
|
controller?.sendCustomCommand(command, args)
|
|
264
|
+
return@AsyncFunction null
|
|
264
265
|
}.runOnQueue(Queues.MAIN)
|
|
265
266
|
|
|
266
267
|
AsyncFunction("getSleepTimerEndTime") {
|
|
@@ -290,6 +291,7 @@ class ExpoOrpheusModule : Module() {
|
|
|
290
291
|
checkController()
|
|
291
292
|
val command = SessionCommand(CustomCommands.CMD_CANCEL_TIMER, Bundle.EMPTY)
|
|
292
293
|
controller?.sendCustomCommand(command, Bundle.EMPTY)
|
|
294
|
+
return@AsyncFunction null
|
|
293
295
|
}.runOnQueue(Queues.MAIN)
|
|
294
296
|
|
|
295
297
|
AsyncFunction("addToEnd") { tracks: List<TrackRecord>, startFromId: String?, clearQueue: Boolean? ->
|