We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac07c7e commit c906cb8Copy full SHA for c906cb8
1 file changed
resources/main.py
@@ -134,6 +134,7 @@ def create_directory_items(app_entries):
134
item = xbmcgui.ListItem(name)
135
item.setUniqueIDs({'steam': appid, 'steam_img_icon': app_entry['img_icon_url']})
136
item.setInfo('video', {'playcount': app_entry.get('playtime_forever', 0)})
137
+ item.setContentLookup(False) # Tells Kodi not to send HEAD requests (used to determine MIME type for example) to the item's run URL.
138
139
item.addContextMenuItems([('Play', 'RunPlugin(' + run_url + ')'),
140
('Install', 'RunPlugin(' + plugin.url_for(install, appid=appid) + ')')])
0 commit comments