clean up promises properly

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2019-06-29 07:05:43 +01:00
parent e8db379fed
commit 77dbc79386

View file

@ -45,7 +45,7 @@ const singleMxcUpload = async () => {
Modal.createTrackedDialog('Upload Files confirmation', '', UploadConfirmDialog, {
file,
onFinished: (shouldContinue) => {
if (shouldContinue) resolve(MatrixClientPeg.get().uploadContent(file));
resolve(shouldContinue ? MatrixClientPeg.get().uploadContent(file) : null);
},
});
};
@ -246,6 +246,7 @@ export const CommandMap = {
}
return success(promise.then((url) => {
if (!url) return;
const ev = room.currentState.getStateEvents('m.room.member', userId);
const content = {
...ev ? ev.getContent() : { membership: 'join' },
@ -267,6 +268,7 @@ export const CommandMap = {
}
return success(promise.then((url) => {
if (!url) return;
return MatrixClientPeg.get().setAvatarUrl(url);
}));
},