mirror of
https://github.com/tulir/gomuks.git
synced 2025-04-20 10:33: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) {
|
if(useMatrixTo) {
|
||||||
generatedUrl += evt.room_id
|
generatedUrl += evt.room_id
|
||||||
} else {
|
} else {
|
||||||
generatedUrl += `!${evt.room_id.slice(1)}`
|
generatedUrl += `${evt.room_id.slice(1)}`
|
||||||
}
|
}
|
||||||
if(includeEvent) {
|
if(includeEvent) {
|
||||||
if(useMatrixTo) {
|
if(useMatrixTo) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue