Skip to content

Commit

Permalink
when scanning manually, search apps/, not apps
Browse files Browse the repository at this point in the history
  • Loading branch information
gfwilliams committed Dec 6, 2024
1 parent 08dee6d commit 8fb79d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ httpGet(Const.APPS_JSON_FILE).then(apps=>{
console.warn("APPS FILE NOT FOUND "+Const.APPS_JSON_FILE);
console.log("Attempting search - SLOW");
let baseurl = window.location.href.replace(/\/[^/]*$/,"/");
let appsURL = baseurl+"apps";
let appsURL = baseurl+"apps/";
httpGet(appsURL).then(htmlText=>{
showToast(Const.APPS_JSON_FILE+" can't be read, scanning 'apps' folder for apps","warning");
var parser = new DOMParser();
Expand Down

0 comments on commit 8fb79d3

Please sign in to comment.