Fixed a critical bug

main
Inga 🏳‍🌈 12 years ago
parent da5617f74b
commit 2fe2734b3e
  1. 4
      FLocal.Common/dataobjects/Post.cs

@ -335,8 +335,8 @@ namespace FLocal.Common.dataobjects {
DateTime date = DateTime.Now;
HashSet<int> newMentionedUsersIds = new HashSet<int>();
if(parentPost != null && parentPost.poster.id != poster.id) {
newMentionedUsersIds.Add(parentPost.poster.id);
if(this.parentPostId != null && this.parentPost.poster.id != this.poster.id) {
newMentionedUsersIds.Add(this.parentPost.poster.id);
}
string newBodyIntermediate = UBBParser.UBBToIntermediate(
new DelegatePostParsingContext(mentionedUser => newMentionedUsersIds.Add(mentionedUser.id)),

Loading…
Cancel
Save