Use the event sender instead of event ID for viaServers off a tombstone

Fixes https://github.com/vector-im/riot-web/issues/10206
pull/21833/head
Travis Ralston 2019-06-28 12:34:46 -06:00
parent 35c0c3142f
commit 083c1a78ab
1 changed files with 3 additions and 3 deletions

View File

@ -327,9 +327,9 @@ export default class MessageComposer extends React.Component {
event_id: createEventId,
room_id: replacementRoomId,
// Try to join via the server that sent the event. This converts $something:example.org
// into a server domain by splitting on colons and ignoring the first entry ("$something").
via_servers: [this.state.tombstone.getId().split(':').splice(1).join(':')],
// Try to join via the server that sent the event. This converts @something:example.org
// into a server domain by splitting on colons and ignoring the first entry ("@something").
via_servers: [this.state.tombstone.getSender().split(':').splice(1).join(':')],
});
}