mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 09:03:49 -07:00
Mass edit is now Series Editor.
Renamed Opps to Oops. Fixed broken SeriesEditor.
This commit is contained in:
parent
eddafaca93
commit
0ff60bde92
15 changed files with 225 additions and 224 deletions
|
@ -279,7 +279,7 @@ namespace NzbDrone.Web.Controllers
|
|||
public JsonResult DeleteQualityProfile(int profileId)
|
||||
{
|
||||
if (_seriesProvider.GetAllSeries().Where(s => s.QualityProfileId == profileId).Count() != 0)
|
||||
return JsonNotificationResult.Opps("Profile is still in use.");
|
||||
return JsonNotificationResult.Oops("Profile is still in use.");
|
||||
|
||||
_qualityProvider.Delete(profileId);
|
||||
|
||||
|
@ -410,7 +410,7 @@ namespace NzbDrone.Web.Controllers
|
|||
return GetSuccessResult();
|
||||
}
|
||||
|
||||
return JsonNotificationResult.Opps("Invalid Data");
|
||||
return JsonNotificationResult.Oops("Invalid Data");
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
|
@ -613,7 +613,7 @@ namespace NzbDrone.Web.Controllers
|
|||
|
||||
private JsonResult GetInvalidModelResult()
|
||||
{
|
||||
return JsonNotificationResult.Opps("Invalid post data");
|
||||
return JsonNotificationResult.Oops("Invalid post data");
|
||||
}
|
||||
|
||||
private SelectList GetProwlPrioritySelectList()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue