We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e3175b commit a22c1a0Copy full SHA for a22c1a0
src/plugins/chatview/utils.js
@@ -125,7 +125,7 @@ export async function routeToQueryAction(event) {
125
function extractXMPPURI(event) {
126
let uri = null;
127
// hash-based (#converse/action?uri=...)
128
- if (!uri && location.hash.startsWith('#converse/action?uri=')) {
+ if (location.hash.startsWith('#converse/action?uri=')) {
129
event?.preventDefault();
130
uri = location.hash.split('uri=').pop();
131
}
0 commit comments