Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
akurilov committed Apr 29, 2024
2 parents 3d7f5be + f989955 commit 9f2532b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/query.js
Original file line number Diff line number Diff line change
Expand Up @@ -779,5 +779,5 @@ function displayEvents(evts) {

function loginAndSubscribe() {
const q = document.getElementById("query").value;
window.location.assign(`login.html?redirect=sub-details.html&q=${q}`);
window.location.assign(`login.html?redirect=sub-details.html&args=${q}`);
}
2 changes: 1 addition & 1 deletion web/sub-details.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ async function loadSubDetails() {
await loadAttributeTypes();
const urlParams = new URLSearchParams(window.location.search);
const id = urlParams.get("id");
const q = urlParams.get("q");
const q = urlParams.get("args");
if (id) {
loadSubDetailsById(id);
} else if (q) {
Expand Down

0 comments on commit 9f2532b

Please sign in to comment.