summaryrefslogtreecommitdiff
path: root/srv/src/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'srv/src/cmd')
-rw-r--r--srv/src/cmd/import-posts/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/srv/src/cmd/import-posts/main.go b/srv/src/cmd/import-posts/main.go
index b2dc889..4523392 100644
--- a/srv/src/cmd/import-posts/main.go
+++ b/srv/src/cmd/import-posts/main.go
@@ -76,7 +76,7 @@ func importPost(postStore post.Store, path string) (post.StoredPost, error) {
Body: string(body),
}
- if err := postStore.Set(p, publishedAt); err != nil {
+ if _, err := postStore.Set(p, publishedAt); err != nil {
return post.StoredPost{}, fmt.Errorf("storing post id %q: %w", p.ID, err)
}
@@ -89,7 +89,7 @@ func importPost(postStore post.Store, path string) (post.StoredPost, error) {
// as a hack, we store the post again with the updated date as now. This
// will update the LastUpdatedAt field in the Store.
- if err := postStore.Set(p, lastUpdatedAt); err != nil {
+ if _, err := postStore.Set(p, lastUpdatedAt); err != nil {
return post.StoredPost{}, fmt.Errorf("updating post id %q: %w", p.ID, err)
}
}