2012-02-07, 20:07
Hey!
I just noticed the problem described in the topic. All of a sudden, my subscriptions are listed with "Activity of:" before the each username, and trying to fetch the video list shows a "No content" error.
I fixed this by modifying the file "YouTubeCore.py" in the plugin directory, on or around line 220. In
remove the space before the : in the "Activity of : " string.
My assumption is that Youtube changed a string on their web site, removing that space, causing the plugin parser to fail. Must have happened very recently too, since at least yesterday I was still able to browse the subscriptions with the space present.
I just noticed the problem described in the topic. All of a sudden, my subscriptions are listed with "Activity of:" before the each username, and trying to fetch the video list shows a "No content" error.
I fixed this by modifying the file "YouTubeCore.py" in the plugin directory, on or around line 220. In
Code:
folder['Title'] = node.getElementsByTagName("title").item(0).firstChild.nodeValue.replace('Activity of : ', '').replace('Videos published by : ', '').encode("utf-8")
remove the space before the : in the "Activity of : " string.
My assumption is that Youtube changed a string on their web site, removing that space, causing the plugin parser to fail. Must have happened very recently too, since at least yesterday I was still able to browse the subscriptions with the space present.