From 67a3752e176790e82a48706236f889cab4f8913d Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sun, 11 Aug 2019 14:08:03 +0200 Subject: bug,entity: use a dedicated type to store IDs --- identity/identity_actions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'identity/identity_actions.go') diff --git a/identity/identity_actions.go b/identity/identity_actions.go index 38d83b19..40aab8e2 100644 --- a/identity/identity_actions.go +++ b/identity/identity_actions.go @@ -75,7 +75,7 @@ func MergeAll(repo repository.ClockedRepo, remote string) <-chan entity.MergeRes continue } - localRef := identityRefPattern + remoteIdentity.Id() + localRef := identityRefPattern + remoteIdentity.Id().String() localExist, err := repo.RefExist(localRef) if err != nil { -- cgit