diff options
Diffstat (limited to 'MediaBrowser.Controller/Library')
| -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 5cfb940891..bcabfff772 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -767,8 +767,8 @@ namespace MediaBrowser.Controller.Library /// </summary> /// <param name="fromChildId">The child ID to re-route from.</param> /// <param name="toChildId">The child ID to re-route to.</param> - /// <returns>Number of references updated.</returns> - int RerouteLinkedChildReferences(Guid fromChildId, Guid toChildId); + /// <returns>A <see cref="Task"/> representing the asynchronous operation.</returns> + Task RerouteLinkedChildReferencesAsync(Guid fromChildId, Guid toChildId); /// <summary> /// Gets legacy query filters for filtering UI. |
