Skip to content

Commit

Permalink
securityChecks: print URL parsing error message
Browse files Browse the repository at this point in the history
  • Loading branch information
tuxor1337 committed May 8, 2024
1 parent ac1c064 commit 5fb3b2c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/modules/page.js
Expand Up @@ -596,7 +596,7 @@ PassFF.Page = (function () {
var passURL = new URL(passItemURL);
} catch(e) {
return PassFF.Page.confirm(
_("passff_error_getting_url_pass", passItemURL) + " "
_("passff_error_getting_url_pass", passItemURL) + "```" + e.message + "```"
+ _("passff_override_antiphishing_confirmation"));
}

Expand Down
6 changes: 3 additions & 3 deletions src/skin/content.css
Expand Up @@ -26,9 +26,9 @@
position: absolute;
top: calc(40% - 7em);
left: calc(50% - 15em);
width: 30em;
height: 14em;
padding: 2.5em 0 0 7em;
width: 34em;
height: 18em;
padding: 2.5em 1em 1em 7em;
box-sizing: border-box;
background-color: #fff;
text-align: left;
Expand Down

0 comments on commit 5fb3b2c

Please sign in to comment.