From e9d4b8211c77dba15f9832c794f253a344254c6f Mon Sep 17 00:00:00 2001 From: 7illusions Date: Mon, 10 Mar 2014 12:39:57 +0100 Subject: [PATCH] PlayTo: Fixes naming issue --- MediaBrowser.Dlna/PlayTo/Device.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MediaBrowser.Dlna/PlayTo/Device.cs b/MediaBrowser.Dlna/PlayTo/Device.cs index 8a43fe36af..690f7525bb 100644 --- a/MediaBrowser.Dlna/PlayTo/Device.cs +++ b/MediaBrowser.Dlna/PlayTo/Device.cs @@ -275,7 +275,7 @@ namespace MediaBrowser.Dlna.PlayTo await SetPlay().ConfigureAwait(false); } - _lapsCount = SetLapsCountToFull(); + _lapsCount = GetLapsCount(); RestartTimer(); return true; @@ -336,7 +336,7 @@ namespace MediaBrowser.Dlna.PlayTo var result = await new SsdpHttpClient(_httpClient).SendCommandAsync(Properties.BaseUrl, service, command.Name, RendererCommands.BuildPost(command, service.ServiceType, 1)) .ConfigureAwait(false); - _lapsCount = SetLapsCountToFull(); + _lapsCount = GetLapsCount(); return true; }