diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-01-12 23:51:22 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-01-12 23:51:22 +0100 |
commit | ba56c9f408571f92bb67dc8a7a61d4a2d8c538fb (patch) | |
tree | 65876ef605f63c3d70811c8d61f1b0a30be39742 /src/timeline/TimelineModel.h | |
parent | v0.11.0 (diff) | |
download | nheko-ba56c9f408571f92bb67dc8a7a61d4a2d8c538fb.tar.xz |
There was always supposed to be a failed state for events
Diffstat (limited to '')
-rw-r--r-- | src/timeline/TimelineModel.h | 2 |
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, }; |