Skip to content

Commit

Permalink
CELE-103 Fix error in EM tile url regex
Browse files Browse the repository at this point in the history
  • Loading branch information
dvcorreia committed Oct 2, 2024
1 parent db5998d commit a0cdd27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/visualizer/backend/visualizer/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
path("api/", api.urls),
*static(settings.STATIC_URL, document_root=settings.STATIC_ROOT),
re_path(
r"resources/(?P<dataset>\d+)/em/(?P<slice>\d+)/(?P<x>\d+)_(?P<y>\d+)_(?P<zoom>\d+).jpg",
r"resources/(?P<dataset>\w+)/em/(?P<slice>\d+)/(?P<x>\d+)_(?P<y>\d+)_(?P<zoom>\d+).jpg",
get_tile,
name="em_resources",
),
Expand Down

0 comments on commit a0cdd27

Please sign in to comment.