hot fix for the tasmota PoP issues

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
Jürgen Eckel 2024-05-28 14:00:51 +02:00
parent e99b614e4a
commit 794590341b
No known key found for this signature in database

View File

@ -35,6 +35,7 @@ func (k Keeper) GetCidsByAddress(ctx sdk.Context, address string) (cids []string
if string(addressBytes) == address { if string(addressBytes) == address {
cids = append(cids, string(cidBytes)) cids = append(cids, string(cidBytes))
break
} }
} }
return cids, len(cids) > 0 return cids, len(cids) > 0