diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2026-05-04 12:06:11 +0900 |
|---|---|---|
| committer | dkanada <dkanada@users.noreply.github.com> | 2026-05-04 12:06:11 +0900 |
| commit | ec990be12af3856eea597ba7ebdd5dbfa5b01ace (patch) | |
| tree | f79b91990e49bddf74e8fcd7fb25471f09d0494a /MediaBrowser.Controller/Persistence | |
| parent | eacdc83fda01b712d2f9821e6624449304395486 (diff) | |
fix person TotalRecordCount when limit is applied
Diffstat (limited to 'MediaBrowser.Controller/Persistence')
| -rw-r--r-- | MediaBrowser.Controller/Persistence/IPeopleRepository.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Persistence/IPeopleRepository.cs b/MediaBrowser.Controller/Persistence/IPeopleRepository.cs index 418289cb4c..a89f3ef9ee 100644 --- a/MediaBrowser.Controller/Persistence/IPeopleRepository.cs +++ b/MediaBrowser.Controller/Persistence/IPeopleRepository.cs @@ -1,13 +1,15 @@ #nullable disable -#pragma warning disable CS1591 - using System; using System.Collections.Generic; using MediaBrowser.Controller.Entities; +using MediaBrowser.Model.Querying; namespace MediaBrowser.Controller.Persistence; +/// <summary> +/// Provides methods for accessing Peoples. +/// </summary> public interface IPeopleRepository { /// <summary> @@ -15,7 +17,7 @@ public interface IPeopleRepository /// </summary> /// <param name="filter">The query.</param> /// <returns>The list of people matching the filter.</returns> - IReadOnlyList<PersonInfo> GetPeople(InternalPeopleQuery filter); + QueryResult<PersonInfo> GetPeople(InternalPeopleQuery filter); /// <summary> /// Updates the people. |
