diff options
| author | crobibero <cody@robibe.ro> | 2020-09-11 16:11:19 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-09-11 16:11:19 -0600 |
| commit | 97e948bbf6405c65d711aca6cd9d9febae95e8ff (patch) | |
| tree | d9c80515b6c3f73941fda6712e0c8341c3633398 | |
| parent | e3fb7f426c969c0316b53fe3348367c949f71c66 (diff) | |
Fix added warnings
| -rw-r--r-- | MediaBrowser.Controller/Subtitles/ISubtitleManager.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Subtitles/ISubtitleManager.cs b/MediaBrowser.Controller/Subtitles/ISubtitleManager.cs index 8537a7ef4..feb26bc10 100644 --- a/MediaBrowser.Controller/Subtitles/ISubtitleManager.cs +++ b/MediaBrowser.Controller/Subtitles/ISubtitleManager.cs @@ -56,6 +56,9 @@ namespace MediaBrowser.Controller.Subtitles /// <summary> /// Upload new subtitle. /// </summary> + /// <param name="video">The video the subtitle belongs to.</param> + /// <param name="response">The subtitle response.</param> + /// <returns>A <see cref="Task"/> representing the asynchronous operation.</returns> Task UploadSubtitle(Video video, SubtitleResponse response); /// <summary> |
