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:
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
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