浏览代码

PlayTo: Fixes naming issue

7illusions 11 年之前
父节点
当前提交
e9d4b8211c
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      MediaBrowser.Dlna/PlayTo/Device.cs

+ 2 - 2
MediaBrowser.Dlna/PlayTo/Device.cs

@@ -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;
         }
         }