Set pubDate to published time and date

This commit is contained in:
2024-03-17 09:41:09 +01:00
parent ceab7281e9
commit 4fffc1c696
2 changed files with 5 additions and 3 deletions

View File

@@ -23,8 +23,8 @@ func (db *DB) AddArticle(a *Article) (int64, error) {
VALUES (?, ?, ?, ?, ?, ?)
`
result, err := db.Exec(query, a.Title, a.Description, a.Content, a.Published,
a.Rejected, a.AuthorID)
result, err := db.Exec(query, a.Title, a.Description, a.Content,
a.Published, a.Rejected, a.AuthorID)
if err != nil {
return 0, fmt.Errorf("error inserting article into DB: %v", err)
}