diff options
| author | Patrick Barron <barronpm@gmail.com> | 2021-10-02 14:01:57 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2021-10-03 21:41:22 -0400 |
| commit | 718098365409247812c1f5aa4605be20ff3f67da (patch) | |
| tree | 95b7db5e04676540421e9b07e54472484bfb57ba | |
| parent | 876a902356fb5c0e502b440d591287a53e2488fc (diff) | |
Fix warnings in SessionManager
| -rw-r--r-- | Emby.Server.Implementations/Session/SessionManager.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs index 334ce5c9d..341d2c8e6 100644 --- a/Emby.Server.Implementations/Session/SessionManager.cs +++ b/Emby.Server.Implementations/Session/SessionManager.cs @@ -741,6 +741,8 @@ namespace Emby.Server.Implementations.Session /// <summary> /// Used to report playback progress for an item. /// </summary> + /// <param name="info">The playback progress info.</param> + /// <param name="isAutomated">Whether this is an automated update.</param> /// <returns>Task.</returns> public async Task OnPlaybackProgress(PlaybackProgressInfo info, bool isAutomated) { |
