1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

Handle M_NOT_FOUND

This commit is contained in:
Kegan Dougal
2017-06-09 15:06:09 +01:00
parent b70881f078
commit 34d7d793b7

View File

@@ -315,6 +315,18 @@ function setWidget(event, roomId) {
};
}
return client.sendStateEvent(roomId, "im.vector.modular.widgets", widgets);
}, (err) => {
if (err.errcode === "M_NOT_FOUND") {
return client.sendStateEvent(roomId, "im.vector.modular.widgets", {
[widgetId]: {
type: widgetType,
url: widgetUrl,
name: widgetName,
data: widgetData,
}
});
}
throw err;
}).done(() => {
sendResponse(event, {
success: true,