diff options
| author | Bond_009 <bond.009@outlook.com> | 2023-07-29 21:35:38 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2023-07-29 21:35:38 +0200 |
| commit | 5677566a41638f4c62f107f3540363457c099019 (patch) | |
| tree | 010ce0ece9eb449b0b8db2fee93c09559ea81816 /Emby.Server.Implementations/Plugins/PluginManager.cs | |
| parent | 148c86ee0db643b5278dcbd68133bcc64a2f617e (diff) | |
Enable nullable for more files
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) |
