1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-01 04:45:35 +00:00

Fixed: Removed redirect permanent from old quality profile endpoint

This commit is contained in:
Mark McDowall 2014-08-13 18:22:36 -07:00
parent 6671934c0f
commit 7d7fe912aa

View file

@ -15,7 +15,7 @@ public LegacyProfileModule()
string queryString = ConvertQueryParams(Request.Query);
var url = String.Format("/api/profile?{0}", queryString);
return Response.AsRedirect(url, RedirectResponse.RedirectType.Permanent);
return Response.AsRedirect(url);
};
}