summary refs log tree commit diff
path: root/src/timeline/TimelineModel.h
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-01-12 23:51:22 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2023-01-12 23:51:22 +0100
commitba56c9f408571f92bb67dc8a7a61d4a2d8c538fb (patch)
tree65876ef605f63c3d70811c8d61f1b0a30be39742 /src/timeline/TimelineModel.h
parentv0.11.0 (diff)
downloadnheko-ba56c9f408571f92bb67dc8a7a61d4a2d8c538fb.tar.xz
There was always supposed to be a failed state for events
Diffstat (limited to '')
-rw-r--r--src/timeline/TimelineModel.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/timeline/TimelineModel.h b/src/timeline/TimelineModel.h
index cb8aa380..0bf29dc1 100644
--- a/src/timeline/TimelineModel.h
+++ b/src/timeline/TimelineModel.h
@@ -149,6 +149,8 @@ enum EventState
     Read,
     //! The client sent the message. Not yet received.
     Sent,
+    //! The client sent the message, but it failed.
+    Failed,
     //! When the message is loaded from cache or backfill.
     Empty,
 };