Explorar o código

improve performance in the wrong place

Co-authored-by: Cody Robibero <cody@robibe.ro>
dkanada %!s(int64=4) %!d(string=hai) anos
pai
achega
454deece13
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Emby.Server.Implementations/Plugins/PluginManager.cs

+ 1 - 1
Emby.Server.Implementations/Plugins/PluginManager.cs

@@ -381,7 +381,7 @@ namespace Emby.Server.Implementations.Plugins
             if (!string.IsNullOrEmpty(packageInfo.ImageUrl))
             {
                 var url = new Uri(packageInfo.ImageUrl);
-                imagePath = Path.Join(path, url.Segments.Last());
+                imagePath = Path.Join(path, url.Segments[^1]);
 
                 await using var fileStream = File.OpenWrite(imagePath);
                 var downloadStream = await HttpClientFactory