Fixed half of warnings having to do with allowing Null string objects. (#791)
This commit is contained in:
@@ -5,7 +5,7 @@ namespace Microsoft.eShopWeb.Web;
|
||||
|
||||
public class SlugifyParameterTransformer : IOutboundParameterTransformer
|
||||
{
|
||||
public string TransformOutbound(object value)
|
||||
public string? TransformOutbound(object value)
|
||||
{
|
||||
if (value == null) { return null; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user