From 81f1f75fb15514f62cbd2ebf199142f76b5a45fa Mon Sep 17 00:00:00 2001 From: youngS Date: Sun, 12 Sep 2021 10:29:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=8F=E8=BF=B0=E6=96=87=E4=BB=B6bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fir_ser/api/views/download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fir_ser/api/views/download.py b/fir_ser/api/views/download.py index fb67126..822c58b 100644 --- a/fir_ser/api/views/download.py +++ b/fir_ser/api/views/download.py @@ -75,7 +75,7 @@ class DownloadView(APIView): udid_url = get_post_udid_url(request, release_obj.app_id.short) app_obj = release_obj.app_id ios_udid_mobile_config = make_sign_udid_mobile_config(udid_url, app_obj.app_id, app_obj.bundle_id, - app_obj.app_name) + app_obj.name) response = FileResponse(ios_udid_mobile_config) response['Content-Type'] = "application/x-apple-aspen-config" response['Content-Disposition'] = 'attachment; filename=' + make_random_uuid() + '.mobileconfig'