From 7d7fe912aa94be00e08eb36117f9c9fbf8c2fc93 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 13 Aug 2014 18:22:36 -0700 Subject: [PATCH] Fixed: Removed redirect permanent from old quality profile endpoint --- src/NzbDrone.Api/Profiles/LegacyProfileModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Api/Profiles/LegacyProfileModule.cs b/src/NzbDrone.Api/Profiles/LegacyProfileModule.cs index 23f76fc3c..e28733608 100644 --- a/src/NzbDrone.Api/Profiles/LegacyProfileModule.cs +++ b/src/NzbDrone.Api/Profiles/LegacyProfileModule.cs @@ -15,7 +15,7 @@ namespace NzbDrone.Api.Profiles string queryString = ConvertQueryParams(Request.Query); var url = String.Format("/api/profile?{0}", queryString); - return Response.AsRedirect(url, RedirectResponse.RedirectType.Permanent); + return Response.AsRedirect(url); }; }