mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-31 03:11:02 +02:00
Only commit a non-falsy tags list
This commit is contained in:
parent
0b38bf5e7b
commit
8d2d3e62cd
@ -23,10 +23,14 @@ const TagOrderActions = {};
|
||||
TagOrderActions.commitTagOrdering = createPromiseActionCreator(
|
||||
'TagOrderActions.commitTagOrdering',
|
||||
(matrixClient) => {
|
||||
// Only commit tags if the state is ready, i.e. not null
|
||||
const tags = TagOrderStore.getOrderedTags();
|
||||
if (!tags) {
|
||||
return;
|
||||
}
|
||||
|
||||
Analytics.trackEvent('TagOrderActions', 'commitTagOrdering');
|
||||
return matrixClient.setAccountData('im.vector.web.tag_ordering', {
|
||||
tags: TagOrderStore.getOrderedTags(),
|
||||
});
|
||||
return matrixClient.setAccountData('im.vector.web.tag_ordering', {tags});
|
||||
},
|
||||
);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user