Kodi Community Forum

Full Version: OnDemandKorea.com HELP PLEASE
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I got an old OnDemandKorea.com plug-in that looks like it's not being developed anymore from here:
https://xbmc-korea-addons.googlecode.com...mandkorea/

The plugin works perfectly on my Windows Kodi v15.0-ALPHA1
However, on my FireTV Box(v14 or latest nightly), each of the menu list's are blank.

Seems like this function is not returning any results on the FireTV:

Code:
def parseGenrePage(page_url, koPage=True):
    req  = urllib2.Request(page_url)
    req.add_header('User-Agent', default_UA)
    if koPage:
        req.add_header('Accept-Langauge', 'ko')
        req.add_header('Cookie', 'language=kr')
    html = urllib2.urlopen(req).read().decode('utf-8')
    soup = BeautifulSoup(html)
    # soup.findAll('div', {'class':'genreSub'})
    items = []
    for node in soup.findAll('div', {'class':'ep_box'}):
        items.append({'title':node.b.string, 'url':root_url+'/'+node.a['href'], 'thumbnail':node.img['src']})
    return items

Anyone willing to give it a quick look see and help fix the problem. Seems like it might just be a quick easy fix, as it's all working on Windows

http://xbmclogs.com/show.php?id=426883 (plugin load starts around line 600)

Thanks!

Jeff
Anyone can help on this add-on?
I'm really seeking this ondemandkorea add-on for a long time.

The latest add-on can be found in link below
https://github.com/hojel/xbmc-korea-addons

I can load ondeamndkorea without problem, but I can't load the VODs in it.
It keeps to give me an error "Check the log."