diff options
Diffstat (limited to 'lib/events/callinviteevent.h')
-rw-r--r-- | lib/events/callinviteevent.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/events/callinviteevent.h b/lib/events/callinviteevent.h index 553a8024..029b2e3d 100644 --- a/lib/events/callinviteevent.h +++ b/lib/events/callinviteevent.h @@ -32,6 +32,8 @@ namespace QMatrixClient explicit CallInviteEvent(const QString& callId, const int lifetime, const QString& sdp); + bool isStateEvent() const override { return true; } + const int lifetime() const { return _lifetime; } const QString& sdp() const { return _sdp; } const QString& callId() const { return _callId; } |