Set pubDate to published time and date

This commit is contained in:
2024-03-17 09:41:09 +01:00
parent 736673c33f
commit 40d1104a66
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)
}