summaryrefslogtreecommitdiff
path: root/internal/db/bundb/errors.go
diff options
context:
space:
mode:
authorLibravatar tsmethurst <tobi.smethurst@protonmail.com>2022-02-08 12:19:54 +0100
committerLibravatar tsmethurst <tobi.smethurst@protonmail.com>2022-02-08 12:19:54 +0100
commitb42b0a667ef8c3287919a4b7f379e49683f13077 (patch)
tree3e3062d268146f2ca60f590485f852a2ba5b49cf /internal/db/bundb/errors.go
parentmerge fixup (diff)
downloadgotosocial-b42b0a667ef8c3287919a4b7f379e49683f13077.tar.xz
go fmt
Diffstat (limited to 'internal/db/bundb/errors.go')
-rw-r--r--internal/db/bundb/errors.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/bundb/errors.go b/internal/db/bundb/errors.go
index 113679226..67a673e15 100644
--- a/internal/db/bundb/errors.go
+++ b/internal/db/bundb/errors.go
@@ -36,7 +36,7 @@ func processSQLiteError(err error) db.Error {
// Handle supplied error code:
switch sqliteErr.Code() {
case sqlite3.SQLITE_CONSTRAINT_UNIQUE, sqlite3.SQLITE_CONSTRAINT_PRIMARYKEY:
- return db.NewErrAlreadyExists(err.Error())
+ return db.NewErrAlreadyExists(err.Error())
default:
return err
}