Skip to content

Collections stuck as PlexPartialObject after reloading #605

@JonnyWong16

Description

@JonnyWong16

Describe the issue
Collections are stuck as a partial object after reloading.

Code snipppets

>>> collection = plex.fetchItem(362)
>>> collection
<Collections:362:test>
>>> collection.isPartialObject()
True
>>> collection.reload()
<Collections:362:test>
>>> collection.isPartialObject()
True

Expected behavior
Collections should be a full object after reloading.

>>> collection = plex.fetchItem(362)
>>> collection
<Collections:362:test>
>>> collection.isPartialObject()
True
>>> collection.reload()
<Collections:362:test>
>>> collection.isPartialObject()
False

Enviroment (please complete the following information):

  • Python Version: 3.9.0
  • PlexAPI Version: 4.2.0

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions