Publish PostUpdated only when the post is published

This commit is contained in:
Kitaiti Makoto 2021-01-09 17:57:14 +09:00
parent a46b718937
commit 68d79bfa9c
1 changed files with 3 additions and 1 deletions

View File

@ -89,7 +89,9 @@ impl Post {
diesel::update(self).set(self).execute(conn)?;
let post = Self::get(conn, self.id)?;
// TODO: Call publish_published() when newly published
self.publish_updated();
if post.published {
self.publish_updated();
}
Ok(post)
}