summaryrefslogtreecommitdiff
path: root/internal/db/bundb/errors.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/db/bundb/errors.go')
-rw-r--r--internal/db/bundb/errors.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/db/bundb/errors.go b/internal/db/bundb/errors.go
index d01720731..113679226 100644
--- a/internal/db/bundb/errors.go
+++ b/internal/db/bundb/errors.go
@@ -35,8 +35,8 @@ func processSQLiteError(err error) db.Error {
// Handle supplied error code:
switch sqliteErr.Code() {
- case sqlite3.SQLITE_CONSTRAINT_UNIQUE:
- return db.NewErrAlreadyExists(err.Error())
+ case sqlite3.SQLITE_CONSTRAINT_UNIQUE, sqlite3.SQLITE_CONSTRAINT_PRIMARYKEY:
+ return db.NewErrAlreadyExists(err.Error())
default:
return err
}