9278: Crash when dragging multiple media items to clipboard

This commit is contained in:
SNoiraud 2016-03-19 23:46:00 +01:00
parent 32be137dd8
commit d414f33d01

View File

@ -864,8 +864,10 @@ class ClipDropList(object):
retval = []
for (target, handle) in handles:
_class = map2class(target)
obj = _class(self._dbstate, pickle.dumps((target, id, handle, timestamp)))
retval.append(obj)
if _class:
obj = _class(self._dbstate, pickle.dumps((target, id, handle, timestamp)))
if obj:
retval.append(obj)
return retval
class ClipDropRawList(ClipDropList):