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

Remove old Emby (3.x) version checks

As per https://trello.com/c/sA25wd46/8-remove-old-emby-3x-version-checks
This commit is contained in:
James Raspass 2023-03-02 13:24:46 +00:00
parent 2681d5c4ca
commit bd9d3e5f65
3 changed files with 8 additions and 24 deletions

View file

@ -3423,12 +3423,6 @@ class PlaybackManager {
streamInfo.lastMediaInfoQuery = new Date().getTime();
const apiClient = ServerConnections.getApiClient(serverId);
if (!apiClient.isMinServerVersion('3.2.70.7')) {
return;
}
ServerConnections.getApiClient(serverId).getLiveStreamMediaInfo(liveStreamId).then(function (info) {
mediaSource.MediaStreams = info.MediaStreams;
Events.trigger(player, 'mediastreamschange');