mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
if no value set return a default of 10M
This commit is contained in:
parent
0eacb876c7
commit
9f0d02c03a
1 changed files with 3 additions and 1 deletions
|
@ -145,6 +145,8 @@ class PlayUtils():
|
||||||
return '100000'
|
return '100000'
|
||||||
elif (videoQuality == "18"):
|
elif (videoQuality == "18"):
|
||||||
return '1000000'
|
return '1000000'
|
||||||
|
else:
|
||||||
|
return '10000000'
|
||||||
|
|
||||||
def fileExists(self, result):
|
def fileExists(self, result):
|
||||||
path=result.get("Path").encode('utf-8')
|
path=result.get("Path").encode('utf-8')
|
||||||
|
|
Loading…
Reference in a new issue