Damnit IE, you suck

Fixed: IE trying to save/open json result in settings
Empty allowed release group can be saved
pull/2/head
Mark McDowall 12 years ago
parent 6969a5d789
commit 5017c16848

@ -45,8 +45,8 @@ namespace NzbDrone.Web.Models
return new JsonResult return new JsonResult
{ {
Data = new JsonNotificationResult { NotificationType = notificationType, Title = title, Text = text }, Data = new JsonNotificationResult { NotificationType = notificationType, Title = title, Text = text },
ContentType = null, ContentType = "application/json; charset=UTF-8",
ContentEncoding = null, ContentEncoding = System.Text.Encoding.UTF8,
JsonRequestBehavior = JsonRequestBehavior.AllowGet JsonRequestBehavior = JsonRequestBehavior.AllowGet
}; };
} }

@ -18,6 +18,7 @@ namespace NzbDrone.Web.Models
[DisplayName("Specified Release Groups")] [DisplayName("Specified Release Groups")]
[Description("Comma separated list of release groups to download episodes (leave empty for all groups)")] [Description("Comma separated list of release groups to download episodes (leave empty for all groups)")]
[DisplayFormat(ConvertEmptyStringToNull = false)]
public string AllowedReleaseGroups { get; set; } public string AllowedReleaseGroups { get; set; }
} }
} }
Loading…
Cancel
Save