mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Backport pull request #5573 from jellyfin-web/release-10.9.z
Fix playback interceptor rejecting
Original-merge: add01e332b
Merged-by: thornbill <thornbill@users.noreply.github.com>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
parent
0a55ea2dd9
commit
80abbb4574
2 changed files with 41 additions and 26 deletions
|
@ -35,7 +35,8 @@ class PlayAccessValidation {
|
|||
return Promise.reject();
|
||||
}
|
||||
|
||||
return showErrorMessage().finally(Promise.reject);
|
||||
return showErrorMessage()
|
||||
.finally(() => Promise.reject());
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue