Skip to content

Commit

Permalink
removing redundant character
Browse files Browse the repository at this point in the history
  • Loading branch information
JackLewis-digirati committed Jan 9, 2024
1 parent b537e3e commit ffb0ad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/protagonist/API/Settings/ApiSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public bool LegacyModeEnabledForCustomer(int customerId)
/// <summary>
/// Characters that are not allowed in an asset id
/// </summary>
public char[]? RestrictedAssetIdCharacters =>
public char[] RestrictedAssetIdCharacters =>
restrictedAssetIdCharacters.Length != 0 ? restrictedAssetIdCharacters
: RestrictedAssetIdCharacterString.ToCharArray();

Expand Down

0 comments on commit ffb0ad5

Please sign in to comment.