Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/fb2d17824225e9849a45bc146fa6e09f3c71b1fb You should set ROOT_URL correctly, otherwise the web may not work correctly.

add await directive for image download

Co-authored-by: Cody Robibero <cody@robibe.ro>
pull/5217/head
dkanada 4 years ago committed by GitHub
parent e9030a62fb
commit fb2d178242
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -384,7 +384,7 @@ namespace Emby.Server.Implementations.Plugins
imagePath = Path.Join(path, url.Segments[^1]);
await using var fileStream = File.OpenWrite(imagePath);
var downloadStream = await HttpClientFactory
await using var downloadStream = await HttpClientFactory
.CreateClient(NamedClient.Default)
.GetStreamAsync(url)
.ConfigureAwait(false);

Loading…
Cancel
Save