diff options
| author | Cody Robibero <cody@robibe.ro> | 2022-02-16 20:47:22 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-16 20:47:22 -0700 |
| commit | 9930efec2208cb1756eff3eb181044d6f6f3e3da (patch) | |
| tree | e3cd0ffe83f6202e949b864ba815e45bcd859ab7 /MediaBrowser.Controller/Library/ILibraryManager.cs | |
| parent | 5825a0572bdcd11afad283f1e62c07f5e2c61c06 (diff) | |
| parent | 5732e6188c78e9e0de4a5557bfa9cfa64e05b506 (diff) | |
Merge pull request #7321 from Bond-009/warn61
Diffstat (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 2b0193771..066944c6a 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -138,10 +138,10 @@ namespace MediaBrowser.Controller.Library /// Validate and refresh the People sub-set of the IBN. /// The items are stored in the db but not loaded into memory until actually requested by an operation. /// </summary> - /// <param name="cancellationToken">The cancellation token.</param> /// <param name="progress">The progress.</param> + /// <param name="cancellationToken">The cancellation token.</param> /// <returns>Task.</returns> - Task ValidatePeople(CancellationToken cancellationToken, IProgress<double> progress); + Task ValidatePeopleAsync(IProgress<double> progress, CancellationToken cancellationToken); /// <summary> /// Reloads the root media folder. |
