Skip to content

Commit

Permalink
Add "category" search for Q-Apps
Browse files Browse the repository at this point in the history
  • Loading branch information
QuickMythril committed Dec 16, 2023
1 parent 780d330 commit 689a0c5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/resources/q-apps/q-apps.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ window.addEventListener("message", (event) => {
if (data.names != null) data.names.forEach((x, i) => url = url.concat("&name=" + x));
if (data.title != null) url = url.concat("&title=" + data.title);
if (data.description != null) url = url.concat("&description=" + data.description);
if (data.category != null) url = url.concat("&category=" + data.category);
if (data.prefix != null) url = url.concat("&prefix=" + new Boolean(data.prefix).toString());
if (data.exactMatchNames != null) url = url.concat("&exactmatchnames=" + new Boolean(data.exactMatchNames).toString());
if (data.default != null) url = url.concat("&default=" + new Boolean(data.default).toString());
Expand Down

0 comments on commit 689a0c5

Please sign in to comment.