aboutsummaryrefslogtreecommitdiff
path: root/internal/db
diff options
context:
space:
mode:
authorPavel M <paullus325@gmail.com>2021-11-10 08:29:27 +0300
committerGitHub <noreply@github.com>2021-11-10 13:29:27 +0800
commitde3161155b4e14a2e39e079f026ef1fe31d4eec4 (patch)
tree6f6c4596d510eb07435f533e5e491fd6bf2769be /internal/db
parent8938855b40777f04ec1c637ad38ee9d12001d042 (diff)
api: EditWiki implementation (#5860)
Co-authored-by: Joe Chen <jc@unknwon.io>
Diffstat (limited to 'internal/db')
-rw-r--r--internal/db/backup.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/backup.go b/internal/db/backup.go
index 2f76bb04..f4dec721 100644
--- a/internal/db/backup.go
+++ b/internal/db/backup.go
@@ -89,7 +89,7 @@ func dumpTable(db *gorm.DB, table interface{}, w io.Writer) error {
return errors.Wrap(err, "encode JSON")
}
}
- return nil
+ return rows.Err()
}
func dumpLegacyTables(dirPath string, verbose bool) error {