Skip to content

Commit

Permalink
disable android api for merge with master
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandmann79 committed Mar 8, 2023
1 parent 913575a commit f7cc78a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin.video.amazon-test/resources/lib/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def __getattr__(self, name):
return [3600, 21600, 43200, 86400, 259200, 604800, 1296000, 2592000][int(self._gs('catalog_cache_expiry'))]
elif 'profiles' == name: return self._gs('profiles') == 'true'
elif 'show_pass' == name: return self._gs('show_pass') == 'true'
elif 'data_source' == name: return int('0' + self._gs('data_source'))
elif 'data_source' == name: return 0 # int('0' + self._gs('data_source'))
elif 'uhd' == name: return self._gs('enable_uhd') == 'true'
elif 'show_recents' == name: return self._gs('show_recents') == 'true'

Expand Down
2 changes: 1 addition & 1 deletion plugin.video.amazon-test/resources/settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
</category>
<!-- Datasource -->
<category label="30273">
<setting id="data_source" type="enum" label="30273" values="Web|Android" default="0"/>
<setting id="data_source" type="enum" label="30273" values="Website" default="0"/>
<setting id="pv_episode_thumbnails" type="bool" label="30249" visible="eq(-1,0)" default="true"/>
<setting id="catalog_cache_expiry" type="enum" lvalues="30258|30259|30260|30261|30262|30263|30264|30265" label="30257" default="2" visible="eq(-2,0)" />
<setting id="pv_clearcache" type="action" label="30087" action="RunPlugin(plugin://plugin.video.amazon-test/pv/clearcache/)" option="close" visible="eq(-3,0)" />
Expand Down

0 comments on commit f7cc78a

Please sign in to comment.