diff options
| author | Bond-009 <bond.009@outlook.com> | 2023-09-12 11:09:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-12 11:09:20 +0200 |
| commit | 3087881d93591ccf17af35021e0d286756489221 (patch) | |
| tree | 08260f34273b6bdd2d785822de72a2f371d66605 /Emby.Server.Implementations/Plugins/PluginManager.cs | |
| parent | 759097440ddb777d581a42beb0f7cf9e4f497e2c (diff) | |
| parent | 5677566a41638f4c62f107f3540363457c099019 (diff) | |
Merge pull request #10056 from Bond-009/nullable2
Diffstat (limited to 'Emby.Server.Implementations/Plugins/PluginManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Plugins/PluginManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Plugins/PluginManager.cs b/Emby.Server.Implementations/Plugins/PluginManager.cs index 48584ae0c..1303012e1 100644 --- a/Emby.Server.Implementations/Plugins/PluginManager.cs +++ b/Emby.Server.Implementations/Plugins/PluginManager.cs @@ -677,7 +677,7 @@ namespace Emby.Server.Implementations.Plugins } catch (JsonException ex) { - _logger.LogError(ex, "Error deserializing {Json}.", Encoding.UTF8.GetString(data!)); + _logger.LogError(ex, "Error deserializing {Json}.", Encoding.UTF8.GetString(data)); } if (manifest is not null) |
