Compare commits

...

2 Commits

Author SHA1 Message Date
3fb82b59a8 Merge branch 'master' into uw-is_key-type-error 2025-11-21 11:57:57 +09:00
Ulf Wiger
b1e649961c Correct type error in gmc_conf:is_key/1 2025-11-20 20:35:32 +01:00

View File

@ -234,7 +234,8 @@ binify_keys(AccID, MOAR) ->
is_key(Mystery) ->
try
{account_pubkey, _} = gmser_api_encoder:decode(list_to_binary(Mystery)),
MysteryBin = list_to_binary(Mystery),
{account_pubkey, _} = gmser_api_encoder:decode(MysteryBin),
true
catch
_:_ -> false