aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Session/ISessionController.cs
diff options
context:
space:
mode:
authorPatrick Barron <18354464+barronpm@users.noreply.github.com>2020-05-14 21:16:43 +0000
committerGitHub <noreply@github.com>2020-05-14 21:16:43 +0000
commit87c63e668cd93f612bf3df6c8c23796d410cfa34 (patch)
treed3fa273fff752004bc631bad82ced088f6e4e668 /MediaBrowser.Controller/Session/ISessionController.cs
parentb94afc597c4d51f67552c9ba2c25bdb8df6d8599 (diff)
parent5ce008e02f0500c5d0298067fa401a740742e3f0 (diff)
Merge branch 'master' into activitydb-efcore
Diffstat (limited to 'MediaBrowser.Controller/Session/ISessionController.cs')
-rw-r--r--MediaBrowser.Controller/Session/ISessionController.cs3
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);
}
}