From 982a30394018a9262aae0fafc56c736635ba27ed Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 29 Aug 2013 17:00:27 -0400 Subject: added IsMuted to playback progress --- MediaBrowser.Model/ApiClient/IApiClient.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'MediaBrowser.Model/ApiClient/IApiClient.cs') diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs index eaa3dc15a..f4483e2e2 100644 --- a/MediaBrowser.Model/ApiClient/IApiClient.cs +++ b/MediaBrowser.Model/ApiClient/IApiClient.cs @@ -467,7 +467,7 @@ namespace MediaBrowser.Model.ApiClient /// if set to true [is paused]. /// Task{UserItemDataDto}. /// itemId - Task ReportPlaybackProgressAsync(string itemId, string userId, long? positionTicks, bool isPaused); + Task ReportPlaybackProgressAsync(string itemId, string userId, long? positionTicks, bool isPaused, bool isMuted); /// /// Reports to the server that the user has stopped playing an item @@ -588,7 +588,7 @@ namespace MediaBrowser.Model.ApiClient /// The display preferences. /// Task{DisplayPreferences}. /// userId - Task UpdateDisplayPreferencesAsync(DisplayPreferences displayPreferences, string userId, string client); + Task UpdateDisplayPreferencesAsync(DisplayPreferences displayPreferences, string userId, string client, CancellationToken cancellationToken); /// /// Posts a set of data to a url, and deserializes the return stream into T -- cgit v1.2.3