Browse Source

update error log for plugin download

dkanada 5 years ago
parent
commit
6d3e5d8662
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Emby.Server.Implementations/Updates/InstallationManager.cs

+ 1 - 1
Emby.Server.Implementations/Updates/InstallationManager.cs

@@ -350,7 +350,7 @@ namespace Emby.Server.Implementations.Updates
             var extension = Path.GetExtension(package.SourceUrl);
             if (!string.Equals(extension, ".zip", StringComparison.OrdinalIgnoreCase))
             {
-                _logger.LogError("Only zip packages are supported. {Filename} is not a zip archive.", package.SourceUrl);
+                _logger.LogError("Only zip packages are supported. {SourceUrl} is not a zip archive.", package.SourceUrl);
                 return;
             }