Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- Use libzim 3.9.0 or above to fix freezing compression issues (#61)
- Immediately redirect when opening search results (#60)

## [0.1.1] - 2026-03-10

Expand Down
2 changes: 1 addition & 1 deletion scraper/src/maps2zim/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -1548,7 +1548,7 @@ def _create_redirect_html(place: SearchPlace, root_prefix: str) -> str:
<title>{place.label}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="refresh" content="1;URL='{map_url}'" />
<meta http-equiv="refresh" content="0;URL='{map_url}'" />
<link rel="stylesheet" href="{root_prefix}content/styles.css">
</head>
<body>
Expand Down