Skip to content

Commit

Permalink
Update martin-mbtiles/src/tile_copier.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Yuri Astrakhan <[email protected]>
  • Loading branch information
upsicleclown and nyurik authored Jun 15, 2023
1 parent 89e414d commit 51efcbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion martin-mbtiles/src/tile_copier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ impl TileCopier {
format!("{sql} WHERE zoom_level BETWEEN ? AND ?")
} else {
params.push(min_zoom.to_string());
format!("{sql} WHERE zoom_level >= ? ")
format!("{sql} WHERE zoom_level >= ?")
}
} else if let Some(max_zoom) = &self.options.max_zoom {
params.push(max_zoom.to_string());
Expand Down

0 comments on commit 51efcbc

Please sign in to comment.