fix: hex to lower
This commit is contained in:
parent
ee9ae80829
commit
fd39290bb5
@ -26,7 +26,7 @@ public class NostrBareIdentifier : NostrIdentifier
|
||||
var hexBytes = NostrConverter.ToHexBytes(bech32, out var hrp);
|
||||
if (hrp is "npub" or "note")
|
||||
{
|
||||
return new NostrBareIdentifier(hrp, Convert.ToHexString(hexBytes!));
|
||||
return new NostrBareIdentifier(hrp, Convert.ToHexString(hexBytes!).ToLower());
|
||||
}
|
||||
|
||||
return default;
|
||||
|
Loading…
x
Reference in New Issue
Block a user