Disclose.TV Videos all Fail
#1
2 weeks ago my Disclose.TV add-on stopped playing any videos with "Error: Script Failed" Disclose.TV.

I already Deleted the "Plugin.video.Disclose.TV" file from my User\appdata\roaming\kodi\userdata\add-ondata folder,

Uninstalled Disclose.TV add-on.

Shut down Kodi.

Re- installed Disclose.tv add-on ....and still get the same "Error: Script Failed" Disclose.TV.

Thanks in advance.
#2
I started having the same issue earlier this week. I get the message "Script Failed! : addon.py". This happens on my jailbroken ATV2 running XBMC, my Mac and Windows machine.

I have uninstalled and reinstalled.

Have you been able to resolve the issue?
#3
No I have not, and it is good to hear you are experiencing it on (3) different OS"
#4
Hi,

the add-on was broken due to website changes.

I fixed the add-on and uploaded the fixed version (0.1.0) you should receive an update shortly.

regards,
sphere
My GitHub. My Add-ons:
Image
#5
danke schoen,

We are proud German Americans.
#6
I'm no python developer but i use this plugin each day so I took a look...

There is a problem with the json from the site. when it tries to parse it in scraper.py.

this one liner fixes it...

response = response.replace("\n", ' ').replace("\r", ' ')


it goes in here...

Code:
@staticmethod
    def __img(url):
        return url.replace('135x76', '').split('?')[0]

    def __get_json(self, url):
        response = self.__get_url(url)
        # here is where you put it
        response = response.replace("\n", ' ').replace("\r", ' ')
        if not '"' in response:
            response = response.replace('\'', '"')
        return json.loads(response)

    def __get_tree(self, url):
        html = self.__get_url(url)



regards,
#7
Ignore this, author has just fixed it Smile
#8
(2015-02-14, 19:50)roundyz Wrote: I'm no python developer but i use this plugin each day so I took a look...

There is a problem with the json from the site. when it tries to parse it in scraper.py.

You should have a look to my previous post, I already fixed the add-on but the kodi repos take some time to make the new version available.

Regarding your change itself, I fixed it in a more robust way Wink

I will close this thread because there is already a thread for this plugin
My GitHub. My Add-ons:
Image

Logout Mark Read Team Forum Stats Members Help
Disclose.TV Videos all Fail0