Skip to content

Commit

Permalink
Update 030421 4
Browse files Browse the repository at this point in the history
Netplay updates.  Missed a few things
  • Loading branch information
zach-morris committed Mar 4, 2021
1 parent b1b03b6 commit a5fc3f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addon.py
Expand Up @@ -70,7 +70,7 @@ def archives_browse_all_route():
def archives_choose_from_list_route():
clear_mem_cache('iagl_current_query')
xbmcplugin.addDirectoryItems(plugin.handle,[(plugin.url_for_path('/archives/%(label2)s'%{'label2':x.getLabel2()}),x,True) for x in iagl_addon.routes.get_route_as_listitems('browse')])
if iagl_addon.settings.get('game_list').get('show_netplay') and game.get('properties').get('emu_launcher') == 'external' and iagl_addon.settings.get('ext_launchers').get('environment') not in ['android','android_ra32','android_aarch64']:
if iagl_addon.settings.get('game_list').get('show_netplay') and iagl_addon.settings.get('ext_launchers').get('environment') not in ['android','android_ra32','android_aarch64']:
xbmcplugin.addDirectoryItem(plugin.handle,plugin.url_for_path('/netplay/lobby'),get_netplay_listitem(),True)
if check_if_file_exists(iagl_addon.directory.get('userdata').get('list_cache').get('path').joinpath('history.json')): #Add history listitem
xbmcplugin.addDirectoryItem(plugin.handle,plugin.url_for_path('/game_history/list_all/%(label2)s'%{'label2':'history'}),get_history_listitem(),True)
Expand Down
2 changes: 1 addition & 1 deletion resources/settings.xml
Expand Up @@ -588,7 +588,7 @@
<option label="30058">0</option>
<option label="30608">1</option>
<option label="30609">2</option>
<option label="30610">3</option>
<!-- <option label="30610">3</option> -->
</options>
</constraints>
<control format="string" type="list">
Expand Down

0 comments on commit a5fc3f9

Please sign in to comment.