Comment 2 for bug 1556555

Revision history for this message
nemoinis (nemoinis) wrote :

This change in PluginMovieIMDB.py works for me:

OLD:
    def get_image(self):
        tmp = gutils.trim(self.page, 'id="img_primary"', '</a>')
        self.image_url = gutils.trim(tmp, 'src="', '"')
NEW:
    def get_image(self):
        tmp = gutils.trim(self.page, "property='og:image'", ' />')
        self.image_url = gutils.trim(tmp, 'content="', '"')