Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
FIXUP
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorropo authored Jul 7, 2022
1 parent 5fad30f commit 7724466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func (c *Client) GetValue(ctx context.Context, key string, opts ...routing.Optio
func (c *Client) SearchValue(ctx context.Context, key string, opts ...routing.Option) (<-chan []byte, error) {
ns, path, err := record.SplitKey(key)
if err != nil {
return nil, fmt.Errorf("invalid key. Error: [%w]", err)
return nil, fmt.Errorf("invalid key: %w", err)
}

if ns != "ipns" {
Expand Down

0 comments on commit 7724466

Please sign in to comment.