PlayTo: Fixes naming issue

This commit is contained in:
7illusions 2014-03-10 12:39:57 +01:00
parent 874d953f87
commit e9d4b8211c

View File

@ -275,7 +275,7 @@ namespace MediaBrowser.Dlna.PlayTo
await SetPlay().ConfigureAwait(false); await SetPlay().ConfigureAwait(false);
} }
_lapsCount = SetLapsCountToFull(); _lapsCount = GetLapsCount();
RestartTimer(); RestartTimer();
return true; 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)) var result = await new SsdpHttpClient(_httpClient).SendCommandAsync(Properties.BaseUrl, service, command.Name, RendererCommands.BuildPost(command, service.ServiceType, 1))
.ConfigureAwait(false); .ConfigureAwait(false);
_lapsCount = SetLapsCountToFull(); _lapsCount = GetLapsCount();
return true; return true;
} }