mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +03:00
Address comments
This commit is contained in:
@@ -5011,6 +5011,11 @@ where AncestorIdText not null and ItemValues.Value not null and ItemValues.Type
|
||||
|
||||
commandText += " order by ListOrder";
|
||||
|
||||
if (query.Limit > 0)
|
||||
{
|
||||
commandText += "LIMIT " + query.Limit;
|
||||
}
|
||||
|
||||
using (var connection = GetConnection(true))
|
||||
{
|
||||
var list = new List<string>();
|
||||
@@ -5049,6 +5054,11 @@ where AncestorIdText not null and ItemValues.Value not null and ItemValues.Type
|
||||
|
||||
commandText += " order by ListOrder";
|
||||
|
||||
if (query.Limit > 0)
|
||||
{
|
||||
commandText += "LIMIT " + query.Limit;
|
||||
}
|
||||
|
||||
using (var connection = GetConnection(true))
|
||||
{
|
||||
var list = new List<PersonInfo>();
|
||||
|
||||
Reference in New Issue
Block a user