Merge pull request #1757 from matrix-org/luke/fix-assumed-removed-tags

Do not assume that tags have been removed
This commit is contained in:
Luke Barnard
2018-02-16 16:01:11 +00:00
committed by GitHub

View File

@@ -35,7 +35,7 @@ const TagOrderActions = {};
TagOrderActions.moveTag = function(matrixClient, tag, destinationIx) {
// Only commit tags if the state is ready, i.e. not null
let tags = TagOrderStore.getOrderedTags();
let removedTags = TagOrderStore.getRemovedTagsAccountData();
let removedTags = TagOrderStore.getRemovedTagsAccountData() || [];
if (!tags) {
return;
}