Skip to content

Commit

Permalink
fix: πŸ› Fix crawler not displaying title due to missing tag
Browse files Browse the repository at this point in the history
in redirection file

βœ… Closes: #169
  • Loading branch information
MadejaMaciej committed May 4, 2024
1 parent e71a294 commit 80b71a0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## 0.2.3 May 5, 2024

- Bug #169: Fix crawler not getting title on web version (MadejaMaciej)
- Bug #154: Fix size of windows build (MadejaMaciej)

- Enh #167: Extend walking functionality to use additional keys (MadejaMaciej)
Expand Down
7 changes: 3 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Lost Dutchman Mine</title>
<script>
const l = window.location.href;
const s = l.split("index.html")[0];
window.location.href = s + "main_window/index.html";
</script>
<!-- the document has no actual content; neither character encoding nor styles and scripts are needed -->
</head>
<body>
<!-- no body content in case of redirect -->
</body>
<body></body>
</html>

0 comments on commit 80b71a0

Please sign in to comment.