aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Plugins/PluginManager.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2023-09-12 11:09:20 +0200
committerGitHub <noreply@github.com>2023-09-12 11:09:20 +0200
commit3087881d93591ccf17af35021e0d286756489221 (patch)
tree08260f34273b6bdd2d785822de72a2f371d66605 /Emby.Server.Implementations/Plugins/PluginManager.cs
parent759097440ddb777d581a42beb0f7cf9e4f497e2c (diff)
parent5677566a41638f4c62f107f3540363457c099019 (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.cs2
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)