diff options
| author | Patrick Barron <18354464+barronpm@users.noreply.github.com> | 2020-05-14 21:16:43 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-14 21:16:43 +0000 |
| commit | 87c63e668cd93f612bf3df6c8c23796d410cfa34 (patch) | |
| tree | d3fa273fff752004bc631bad82ced088f6e4e668 /MediaBrowser.Controller/Session/ISessionController.cs | |
| parent | b94afc597c4d51f67552c9ba2c25bdb8df6d8599 (diff) | |
| parent | 5ce008e02f0500c5d0298067fa401a740742e3f0 (diff) | |
Merge branch 'master' into activitydb-efcore
Diffstat (limited to 'MediaBrowser.Controller/Session/ISessionController.cs')
| -rw-r--r-- | MediaBrowser.Controller/Session/ISessionController.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Session/ISessionController.cs b/MediaBrowser.Controller/Session/ISessionController.cs index a59c96ac7..04450085b 100644 --- a/MediaBrowser.Controller/Session/ISessionController.cs +++ b/MediaBrowser.Controller/Session/ISessionController.cs @@ -1,3 +1,4 @@ +using System; using System.Threading; using System.Threading.Tasks; @@ -20,6 +21,6 @@ namespace MediaBrowser.Controller.Session /// <summary> /// Sends the message. /// </summary> - Task SendMessage<T>(string name, string messageId, T data, ISessionController[] allControllers, CancellationToken cancellationToken); + Task SendMessage<T>(string name, Guid messageId, T data, CancellationToken cancellationToken); } } |
