mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-06 02:06:21 +00:00
improve performance in the wrong place
Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user