Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kjtsune committed Jun 6, 2024
1 parent 102da74 commit 670ae73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def parse_received_data_emby(received_data):
extra_str = '/emby' if is_emby else ''
server_version = api_client['_serverVersion']
_a, _b, _c, *_d = [int(i) for i in server_version.split('.')]
stream_name = 'stream' if match_version_range(server_version, ver_range='0-4.8.0.39') else 'original'
stream_name = 'original' if match_version_range(server_version, ver_range='4.8.0.40-9') else 'stream'
if media_source_info.get('Container') == 'bluray': # emby
container = '.m2ts'
if media_source_info.get('VideoType') == 'BluRay': # jellyfin
Expand Down

0 comments on commit 670ae73

Please sign in to comment.