Skip to content
This repository has been archived by the owner on Aug 24, 2024. It is now read-only.

Commit

Permalink
fix: prevent break timeline (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
b-avb authored Feb 21, 2024
1 parent 7640717 commit 7d945d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/matrix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ pub mod matrix {
let Some(p) = position else {
messages.push(timeline_relation);
messages.rotate_right(1);
break;
continue;
};

if let TimelineRelation::CustomThread(ref mut timeline_thread) = messages[p]
Expand Down

0 comments on commit 7d945d4

Please sign in to comment.