mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Send bot options with leading underscore on the state key
This is in order to get around the synapse rule which states that if the state key is a user ID, then only that user can send the event. We want to set the event for another user (the bot), hence we can't send just the plain user ID.
This commit is contained in:
parent
6235d88b55
commit
c292312115
1 changed files with 3 additions and 3 deletions
|
@ -179,12 +179,12 @@ function setBotOptions(event, roomId, userId) {
|
|||
sendError(event, "You need to be logged in.");
|
||||
return;
|
||||
}
|
||||
client.sendStateEvent(roomId, "m.room.bot.options", event.data.content, userId).done(() => {
|
||||
client.sendStateEvent(roomId, "m.room.bot.options", event.data.content, "_" + userId).done(() => {
|
||||
sendResponse(event, {
|
||||
success: true,
|
||||
});
|
||||
}, (err) => {
|
||||
sendError(event, "Failed to send request.", err);
|
||||
sendError(event, err.message ? err.message : "Failed to send request.", err);
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -195,7 +195,7 @@ function getMembershipState(event, roomId, userId) {
|
|||
|
||||
function botOptions(event, roomId, userId) {
|
||||
console.log(`bot_options of ${userId} in room ${roomId} requested.`);
|
||||
returnStateEvent(event, roomId, "m.room.bot.options", userId);
|
||||
returnStateEvent(event, roomId, "m.room.bot.options", "_" + userId);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue