oops, don't try to delete nonexistent tags when moving a room from conversations to favs or similar

This commit is contained in:
Matthew Hodgson 2015-11-30 15:49:27 +00:00
parent 4614017b8f
commit 4409f07c2e

View file

@ -68,7 +68,7 @@ var roomTileSource = {
if (monitor.didDrop() && item.targetList.props.editable) {
// if we moved lists, remove the old tag
if (item.targetList !== item.originalList) {
if (item.targetList !== item.originalList && item.originalList.props.tagName) {
// commented out attempts to set a spinner on our target component as component is actually
// the original source component being dragged, not our target. To fix we just need to
// move all of this to endDrop in the target instead. FIXME later.