if HasQueryLimit is false then set start and limit to null so it includes all results

release-10.1.0
Shaun 9 years ago
parent 0c6edf9773
commit cb751893a8

@ -304,8 +304,11 @@ namespace MediaBrowser.Api.Reports
} }
} }
if (request.HasQueryLimit) if (request.HasQueryLimit == false)
query.Limit = request.Limit; {
query.StartIndex = null;
query.Limit = null;
}
return query; return query;
} }

Loading…
Cancel
Save