1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-24 17:01:38 +00:00

Bug: Fixed ND-9, no longer strip out * from SABnzbd categories, * is Default.

This commit is contained in:
Mark McDowall 2012-01-12 12:05:24 -08:00
parent 359f6ea012
commit 5f0c03d69d

View file

@ -179,8 +179,6 @@ public virtual SabnzbdCategoryModel GetCategories(string host = null, int port =
var deserialized = new JavaScriptSerializer().Deserialize<SabnzbdCategoryModel>(response); var deserialized = new JavaScriptSerializer().Deserialize<SabnzbdCategoryModel>(response);
deserialized.categories.Remove("*");
return deserialized; return deserialized;
} }