aboutsummaryrefslogtreecommitdiff
path: root/ignis/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'ignis/urls.py')
-rw-r--r--ignis/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ignis/urls.py b/ignis/urls.py
index ea0e3b66..b190a40f 100644
--- a/ignis/urls.py
+++ b/ignis/urls.py
@@ -4,7 +4,7 @@ from . import views
app_name = 'ignis'
urlpatterns = [
path('/tex', views.tex, name='tex'),
- path('/post_image/<int:post_id>/', views.post_image, name='post_image'),
+ path('/post_image/<str:post_id>', views.post_image, name='post_image'),
path('/upload', views.upload_image, name='upload_image'),
path('/image/<post_id>/<image_name>', views.get_image, name='get_image'),
path('/cover/<str:repository>', views.cover_image, name='cover_image'),