mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #1510 from MrTimscampi/fix-playback-stop
Fix back button not stopping video playback
This commit is contained in:
commit
0849ea77d8
1 changed files with 3 additions and 1 deletions
|
@ -3710,7 +3710,9 @@ define(['events', 'datetime', 'appSettings', 'itemHelper', 'pluginManager', 'pla
|
|||
return textStreamUrl;
|
||||
};
|
||||
|
||||
PlaybackManager.prototype.stop = function (player = this._currentPlayer) {
|
||||
PlaybackManager.prototype.stop = function (player) {
|
||||
player = player || this._currentPlayer;
|
||||
|
||||
if (player) {
|
||||
|
||||
if (enableLocalPlaylistManagement(player)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue