Skip to content

Commit

Permalink
Merge pull request #3449 from deltachat/adb/update-deeplink-api-impl
Browse files Browse the repository at this point in the history
update to new deep-link API specs
  • Loading branch information
adbenitez authored Nov 26, 2024
2 parents be44789 + b135093 commit 722f2ca
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/main/res/raw/webxdc_wrapper.html
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,7 @@

const params = new URLSearchParams(document.location.search);
const internetAccess = (params.get("i") || "0") === "1";
let href = params.get("href") || "";
if (!href || href.startsWith("#")) {
href = "index.html" + href;
}
let href = params.get("href") || "index.html";

if (internetAccess) { // fill500 not needed, just load the frame
fill500 = (href) => {
Expand Down

0 comments on commit 722f2ca

Please sign in to comment.