aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/BaseStreamingService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-25 16:15:50 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-25 16:15:50 -0400
commit547291f04865f23090986667b5a802cd89ea003d (patch)
treeff2e4c105979fea94390af6c3614193a0d2a9dc5 /MediaBrowser.Api/Playback/BaseStreamingService.cs
parenteda8159b4408c4b33cbdd56e3e6ed2f82757bb0c (diff)
rework notifications infrastructure
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index aafda7812..3fd171416 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -1336,8 +1336,8 @@ namespace MediaBrowser.Api.Playback
}
var item = string.IsNullOrEmpty(request.MediaSourceId) ?
- DtoService.GetItemByDtoId(request.Id) :
- DtoService.GetItemByDtoId(request.MediaSourceId);
+ LibraryManager.GetItemById(request.Id) :
+ LibraryManager.GetItemById(request.MediaSourceId);
if (user != null && item.GetPlayAccess(user) != PlayAccess.Full)
{