mirror of https://github.com/lidarr/Lidarr
Damnit IE, you suck
Fixed: IE trying to save/open json result in settings Empty allowed release group can be saved
This commit is contained in:
parent
6969a5d789
commit
5017c16848
|
@ -45,8 +45,8 @@ namespace NzbDrone.Web.Models
|
|||
return new JsonResult
|
||||
{
|
||||
Data = new JsonNotificationResult { NotificationType = notificationType, Title = title, Text = text },
|
||||
ContentType = null,
|
||||
ContentEncoding = null,
|
||||
ContentType = "application/json; charset=UTF-8",
|
||||
ContentEncoding = System.Text.Encoding.UTF8,
|
||||
JsonRequestBehavior = JsonRequestBehavior.AllowGet
|
||||
};
|
||||
}
|
||||
|
|
|
@ -18,6 +18,7 @@ namespace NzbDrone.Web.Models
|
|||
|
||||
[DisplayName("Specified Release Groups")]
|
||||
[Description("Comma separated list of release groups to download episodes (leave empty for all groups)")]
|
||||
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
||||
public string AllowedReleaseGroups { get; set; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue