aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/room.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/room.cpp b/lib/room.cpp
index c314fc72..0984bd96 100644
--- a/lib/room.cpp
+++ b/lib/room.cpp
@@ -2766,9 +2766,9 @@ Room::Changes Room::processAccountDataEvent(EventPtr&& event)
qCDebug(STATE) << "Updated account data of type"
<< currentData->matrixType();
emit accountDataChanged(currentData->matrixType());
- return Change::AccountDataChange;
+ changes |= Change::AccountDataChange;
}
- return Change::NoChange;
+ return changes;
}
template <typename ContT>