Skip to content

Commit

Permalink
Merge pull request #92 from mrchnk/master
Browse files Browse the repository at this point in the history
Fix hdrezka play episode missing links
  • Loading branch information
dandygithub committed Jan 19, 2024
2 parents 5adf641 + 3a58048 commit 0d08a44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addons/plugin.video.hdrezka.tv/addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.hdrezka.tv" name="Hdrezka.tv" version="2.5.9" provider-name="MrStealth, dandy, DesSolo">
<addon id="plugin.video.hdrezka.tv" name="Hdrezka.tv" version="2.5.10" provider-name="MrStealth, dandy, DesSolo">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.xbmc.helpers" version="2.1.0"/>
Expand Down
2 changes: 1 addition & 1 deletion addons/plugin.video.hdrezka.tv/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def play(self, url, subtitles=None):
def play_episode(self, url, referer, post_id, season_id, episode_id, title, image, idt, data):
log("*** play_episode")
subtitles = None
if (data == "null"):
if data == "null" or data == "":
data = {
"id": post_id,
"translator_id": idt,
Expand Down

0 comments on commit 0d08a44

Please sign in to comment.