mirror of
https://github.com/tulir/gomuks.git
synced 2025-04-19 18:13:41 -05:00
Remove stray ! when adding the room ID to matrix: URIs
This commit is contained in:
parent
0ba53e3759
commit
ad8957f346
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ export const useSecondaryItems = (
|
|||
if(useMatrixTo) {
|
||||
generatedUrl += evt.room_id
|
||||
} else {
|
||||
generatedUrl += `!${evt.room_id.slice(1)}`
|
||||
generatedUrl += `${evt.room_id.slice(1)}`
|
||||
}
|
||||
if(includeEvent) {
|
||||
if(useMatrixTo) {
|
||||
|
|
Loading…
Add table
Reference in a new issue