diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-08-29 17:00:27 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-08-29 17:00:27 -0400 |
| commit | 982a30394018a9262aae0fafc56c736635ba27ed (patch) | |
| tree | 41e942f3df0b6cbae9a677bb3edbb4d43af40e9a /MediaBrowser.Controller/Session/ISessionManager.cs | |
| parent | 528292e496ef1cb6e226937f09774e57996d03db (diff) | |
added IsMuted to playback progress
Diffstat (limited to 'MediaBrowser.Controller/Session/ISessionManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Session/ISessionManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Session/ISessionManager.cs b/MediaBrowser.Controller/Session/ISessionManager.cs index 2af2bbec9..1976c653a 100644 --- a/MediaBrowser.Controller/Session/ISessionManager.cs +++ b/MediaBrowser.Controller/Session/ISessionManager.cs @@ -62,7 +62,7 @@ namespace MediaBrowser.Controller.Session /// <param name="sessionId">The session id.</param> /// <returns>Task.</returns> /// <exception cref="System.ArgumentNullException"></exception> - Task OnPlaybackProgress(BaseItem item, long? positionTicks, bool isPaused, Guid sessionId); + Task OnPlaybackProgress(BaseItem item, long? positionTicks, bool isPaused, bool isMuted, Guid sessionId); /// <summary> /// Used to report that playback has ended for an item |
