From 4e467c75d2c0fbaf6b0cfa82c2a472b40f631d95 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 24 Sep 2023 09:00:37 +1000 Subject: [PATCH] Update urls.py (#5603) Remove double slash for favicon --- InvenTree/InvenTree/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/InvenTree/urls.py b/InvenTree/InvenTree/urls.py index 3164ac4a8c..742848c328 100644 --- a/InvenTree/InvenTree/urls.py +++ b/InvenTree/InvenTree/urls.py @@ -247,7 +247,7 @@ if settings.DEBUG: # Redirect for favicon.ico urlpatterns.append( - path('favicon.ico', RedirectView.as_view(url=f'{settings.STATIC_URL}/img/favicon/favicon.ico')) + path('favicon.ico', RedirectView.as_view(url=f'{settings.STATIC_URL}img/favicon/favicon.ico')) ) # Send any unknown URLs to the parts page