mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-21 19:23:05 +00:00
Fix editing single objects when batchMultiEdit() is enabled (#1479)
Fixes #1475
This commit is contained in:
parent
aba6b9862f
commit
4a8f7483c2
1 changed files with 1 additions and 1 deletions
|
@ -1740,7 +1740,7 @@ class LibrarySection(PlexObject):
|
|||
|
||||
def _edit(self, items=None, **kwargs):
|
||||
""" Actually edit multiple objects. """
|
||||
if isinstance(self._edits, dict):
|
||||
if isinstance(self._edits, dict) and items is None:
|
||||
self._edits.update(kwargs)
|
||||
return self
|
||||
|
||||
|
|
Loading…
Reference in a new issue