Update last replies on topics properly for delete all posts.
This commit is contained in:
parent
e4cfe610f6
commit
2625db3989
@ -411,10 +411,21 @@ func (u *User) DeletePosts() error {
|
|||||||
}
|
}
|
||||||
// TODO: Move this bit to *Topic
|
// TODO: Move this bit to *Topic
|
||||||
_, err = replyStmts.removeRepliesFromTopic.Exec(1, tid)
|
_, err = replyStmts.removeRepliesFromTopic.Exec(1, tid)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
_, err = replyStmts.updateTopicReplies.Exec(tid)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
_, err = replyStmts.updateTopicReplies2.Exec(tid)
|
||||||
if tc != nil {
|
if tc != nil {
|
||||||
tc.Remove(tid)
|
tc.Remove(tid)
|
||||||
}
|
}
|
||||||
_ = rc.Remove(rid)
|
_ = rc.Remove(rid)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
// TODO: Remove alerts.
|
// TODO: Remove alerts.
|
||||||
}
|
}
|
||||||
return rows.Err()
|
return rows.Err()
|
||||||
|
Loading…
Reference in New Issue
Block a user