Skip to content

Commit 4a8f748

Browse files
authored
Fix editing single objects when batchMultiEdit() is enabled (#1479)
Fixes #1475
1 parent aba6b98 commit 4a8f748

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: plexapi/library.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1740,7 +1740,7 @@ def common(self, items):
17401740

17411741
def _edit(self, items=None, **kwargs):
17421742
""" Actually edit multiple objects. """
1743-
if isinstance(self._edits, dict):
1743+
if isinstance(self._edits, dict) and items is None:
17441744
self._edits.update(kwargs)
17451745
return self
17461746

0 commit comments

Comments
 (0)