1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Return Promise from SyncPlay playRequest

This commit is contained in:
Dmitry Lyzo 2022-02-26 15:03:18 +03:00
parent 56080df163
commit 9153044078
2 changed files with 5 additions and 5 deletions

View file

@ -239,7 +239,7 @@ class NoActivePlayer extends SyncPlay.Players.GenericPlayer {
*/
playRequest(options) {
const controller = syncPlayManager.getController();
controller.play(options);
return controller.play(options);
}
/**