Skip to content

Commit

Permalink
Fix typo in referrer tag (#367)
Browse files Browse the repository at this point in the history
Fixing referrer url tag string from #365
  • Loading branch information
tfoote authored Apr 2, 2024
1 parent f80416e commit c4e6cc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ <h2>Move along.</h2>
// Encode the urls
var title = "title=Broken+Link:" + encodeURIComponent(currentUrl);
var currentUrl_encoded = "404page=" + encodeURIComponent(currentUrl);
var referrerUrl_encoded = "referer=" + encodeURIComponent(referrerUrl);
var referrerUrl_encoded = "referrer=" + encodeURIComponent(referrerUrl);

// Update the href
githubLink += "&" + title + "&" + currentUrl_encoded + "&" + referrerUrl_encoded;
Expand Down

0 comments on commit c4e6cc7

Please sign in to comment.