Skip to content

Commit a22c1a0

Browse files
Fix: Adding routeToQuery in the u object
1 parent 0e3175b commit a22c1a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/chatview/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export async function routeToQueryAction(event) {
125125
function extractXMPPURI(event) {
126126
let uri = null;
127127
// hash-based (#converse/action?uri=...)
128-
if (!uri && location.hash.startsWith('#converse/action?uri=')) {
128+
if (location.hash.startsWith('#converse/action?uri=')) {
129129
event?.preventDefault();
130130
uri = location.hash.split('uri=').pop();
131131
}

0 commit comments

Comments
 (0)