Merge pull request #2301 from G10h4ck/forums_deep_indexing

Implement deep indexing and search for forums
This commit is contained in:
G10h4ck 2021-10-28 11:17:51 +02:00 committed by GitHub
commit dc1d5de0db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
36 changed files with 2272 additions and 929 deletions

View file

@ -270,7 +270,10 @@ void NewsFeed::handleForumEvent(std::shared_ptr<const RsEvent> event)
case RsForumEventCode::UPDATED_MESSAGE:
case RsForumEventCode::NEW_MESSAGE:
addFeedItem(new GxsForumMsgItem(this, NEWSFEED_NEW_FORUM, pe->mForumGroupId, pe->mForumMsgId, false, true));
addFeedItem(new GxsForumMsgItem(
this, NEWSFEED_NEW_FORUM,
pe->mForumGroupId, pe->mForumMsgId,
false, true ));
break;
default: break;