Skip to content

Commit

Permalink
Updated plex.py
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzeman committed Nov 26, 2016
1 parent c0439bd commit 1e691da
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ class Detail(Container):
event_stream = Property('eventStream', (int, bool))
hub_search = Property('hubSearch', (int, bool))
media_providers = Property('mediaProviders', (int, bool))
photo_auto_tag = Property('photoAutoTag', (int, bool))
plugin_host = Property('pluginHost', (int, bool))
read_only_libraries = Property('readOnlyLibraries', (int, bool))
updater = Property('updater', (int, bool))
voice_search = Property('voiceSearch', (int, bool))

certificate = Property(type=(int, bool))
multiuser = Property(type=(int, bool))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ class Section(Directory):
uuid = Property
path = Property('key')

filters = Property(type=bool)
refreshing = Property(type=bool)
auto_photo_tags = Property('enableAutoPhotoTags', type=(int, bool))
filters = Property(type=(int, bool))
refreshing = Property(type=(int, bool))

agent = Property
scanner = Property
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Stream(Descriptor):
selected = Property(type=bool)

title = Property
duration = Property(type=int)
duration = Property(type=(float, int))

language = Property
language_code = Property('languageCode')
Expand Down

0 comments on commit 1e691da

Please sign in to comment.