瀏覽代碼

Merge pull request #1062 from Bond-009/warnfix

Fix the 2 new warnings
Joshua M. Boniface 6 年之前
父節點
當前提交
5cb3f04389
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      Jellyfin.Server/Program.cs

+ 1 - 2
Jellyfin.Server/Program.cs

@@ -125,7 +125,7 @@ namespace Jellyfin.Server
             SQLitePCL.Batteries_V2.Init();
 
             // Allow all https requests
-            ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(delegate { return true; } );
+            ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(delegate { return true; });
 
             var fileSystem = new ManagedFileSystem(_loggerFactory, environmentInfo, appPaths);
 
@@ -144,7 +144,6 @@ namespace Jellyfin.Server
                 appHost.ImageProcessor.ImageEncoder = GetImageEncoder(fileSystem, appPaths, appHost.LocalizationManager);
 
                 await appHost.RunStartupTasks().ConfigureAwait(false);
-                // TODO: read input for a stop command
 
                 try
                 {