diff options
| author | Mark Cilia Vincenti <markciliavincenti@gmail.com> | 2024-01-27 21:31:12 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-27 21:31:12 +0100 |
| commit | 3fa86a45595c604a0211ba9ffbc4c7f78f9de881 (patch) | |
| tree | 006a774c8d2464b53f3f6efc26c9549e4ab7d5ce /MediaBrowser.Controller/Session/ISessionManager.cs | |
| parent | 179965e7749794513be0b832e9d8fb31444e9779 (diff) | |
| parent | 054f42332d8e0c45fb899eeaef982aa0fd549397 (diff) | |
Merge branch 'jellyfin:master' into AsyncKeyedLock-migration
Diffstat (limited to 'MediaBrowser.Controller/Session/ISessionManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Session/ISessionManager.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Session/ISessionManager.cs b/MediaBrowser.Controller/Session/ISessionManager.cs index 53df7133b..5a47236f9 100644 --- a/MediaBrowser.Controller/Session/ISessionManager.cs +++ b/MediaBrowser.Controller/Session/ISessionManager.cs @@ -111,7 +111,8 @@ namespace MediaBrowser.Controller.Session /// Reports the session ended. /// </summary> /// <param name="sessionId">The session identifier.</param> - void ReportSessionEnded(string sessionId); + /// <returns>Task.</returns> + ValueTask ReportSessionEnded(string sessionId); /// <summary> /// Sends the general command. |
