diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2026-07-28 22:18:18 +0200 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2026-07-28 22:18:18 +0200 |
| commit | 4cedbe28e37ee1d713db22e2c6a6175f3f1e6dc8 (patch) | |
| tree | ec7cd98a65dc89eac2f47047217aed3ddd9bcca6 | |
| parent | 4d1f90b2f71a1cb5023e07a30aca7e8492482006 (diff) | |
Apply review suggestion
| -rw-r--r-- | MediaBrowser.Providers/Plugins/AudioDb/AudioDbArtistProvider.cs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/MediaBrowser.Providers/Plugins/AudioDb/AudioDbArtistProvider.cs b/MediaBrowser.Providers/Plugins/AudioDb/AudioDbArtistProvider.cs index 3528099260..c4f4833857 100644 --- a/MediaBrowser.Providers/Plugins/AudioDb/AudioDbArtistProvider.cs +++ b/MediaBrowser.Providers/Plugins/AudioDb/AudioDbArtistProvider.cs @@ -8,6 +8,7 @@ using System.Globalization; using System.IO; using System.Linq; using System.Net.Http; +using System.Net.Http.Json; using System.Text.Json; using System.Threading; using System.Threading.Tasks; @@ -100,13 +101,9 @@ namespace MediaBrowser.Providers.Plugins.AudioDb using var response = await _httpClientFactory.CreateClient(NamedClient.Default).GetAsync(url, cancellationToken).ConfigureAwait(false); response.EnsureSuccessStatusCode(); - var jsonStream = await response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false); - await using (jsonStream.ConfigureAwait(false)) - { - var obj = await JsonSerializer.DeserializeAsync<RootObject>(jsonStream, _jsonOptions, cancellationToken).ConfigureAwait(false); + var obj = await response.Content.ReadFromJsonAsync<RootObject>(_jsonOptions, cancellationToken).ConfigureAwait(false); - return obj?.artists ?? []; - } + return obj?.artists ?? []; } private RemoteSearchResult ToRemoteSearchResult(Artist artist) |
