From a410a6575ac2098808d25ad10e8e783215b94298 Mon Sep 17 00:00:00 2001 From: Vivien Date: Fri, 1 May 2020 00:57:42 +0200 Subject: [PATCH] Returns correct content_type --- pwa/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwa/views.py b/pwa/views.py index b6b7c57..6e27823 100644 --- a/pwa/views.py +++ b/pwa/views.py @@ -14,7 +14,7 @@ def manifest(request): setting_name: getattr(app_settings, setting_name) for setting_name in dir(app_settings) if setting_name.startswith('PWA_') - }) + }, content_type='application/json') def offline(request):