chore: fix style

Signed-off-by: gnattu <gnattuoc@me.com>
pull/11259/head
gnattu 2 months ago
parent 6c7fc9414b
commit c3eddf7f33

@ -29,11 +29,12 @@ namespace Emby.Server.Implementations.Serialization
var isCollectibleException = string.Equals(e.Message, "A non-collectible assembly may not reference a collectible assembly.", StringComparison.Ordinal);
if (isCollectibleException)
{
throw new NotSupportedException($"It seems you are using the server's XML serializer in your plugin.\n" +
$"This serializer is only used by the server to handle the plugin's config file " +
$"and is not intended for the plugin to use directly.\n" +
$"Please create your own XML serializer instance to handle plugin specific files.",
e);
throw new NotSupportedException(
$"It seems you are using the server's XML serializer in your plugin.\n" +
$"This serializer is only used by the server to handle the plugin's config file " +
$"and is not intended for the plugin to use directly.\n" +
$"Please create your own XML serializer instance to handle plugin specific files.",
e);
}
}

Loading…
Cancel
Save