diff options
Diffstat (limited to 'bridge/core')
-rw-r--r-- | bridge/core/config.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bridge/core/config.go b/bridge/core/config.go index 45f1afa4..8ad7b965 100644 --- a/bridge/core/config.go +++ b/bridge/core/config.go @@ -5,12 +5,13 @@ import ( "github.com/MichaelMure/git-bug/cache" "github.com/MichaelMure/git-bug/entities/identity" + "github.com/MichaelMure/git-bug/entity" ) func FinishConfig(repo *cache.RepoCache, metaKey string, login string) error { // if no user exist with the given login metadata _, err := repo.ResolveIdentityImmutableMetadata(metaKey, login) - if err != nil && err != identity.ErrIdentityNotExist { + if err != nil && !entity.IsErrNotFound(err) { // real error return err } |