Skip to content
Snippets Groups Projects
Commit e3f90b75 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Add tag event handling

parent a1194091
No related branches found
No related tags found
No related merge requests found
......@@ -73,6 +73,15 @@ void Sync::sync() {
room->id = join.first;
qDebug() << QString::fromStdString(room->id);
for (const auto& e : r.account_data.events)
{
if (const auto t = boost::get<mtx::events::Event<mtx::events::account_data::Tag>>(&e)) {
qDebug() << "Tag event";
room->tags.clear();
for (const auto &tag : t->content.tags)
room->tags.push_back(tag.first);
}
}
std::vector<mtx::events::collections::TimelineEvent> timeline;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment