mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
TopLogs will now return the count pass in, reduced to 5000 from 7500 to prevent JsonSerialization issues when being sent to the grid.
Added tests for TopLogs and GetPagedLogs.
This commit is contained in:
@@ -35,7 +35,7 @@ namespace NzbDrone.Web.Controllers
|
||||
[GridAction]
|
||||
public ActionResult _TopAjaxBinding()
|
||||
{
|
||||
var logs = _logProvider.TopLogs();
|
||||
var logs = _logProvider.TopLogs(5000);
|
||||
|
||||
return View(new GridModel(logs));
|
||||
}
|
||||
|
Reference in New Issue
Block a user