Skip to content

Commit

Permalink
feat(timeline): make more errors transparent
Browse files Browse the repository at this point in the history
  • Loading branch information
bnjbvr committed Nov 25, 2024
1 parent 2e975d9 commit 912b121
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/matrix-sdk-ui/src/timeline/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ pub enum Error {
UnknownEncryptionState,

/// Something went wrong with the room event cache.
#[error("Something went wrong with the room event cache.")]
#[error(transparent)]
EventCacheError(#[from] EventCacheError),

/// An error happened during pagination.
#[error("An error happened during pagination.")]
#[error(transparent)]
PaginationError(#[from] PaginationError),

/// An error happened during pagination.
#[error("An error happened when loading pinned events.")]
#[error(transparent)]
PinnedEventsError(#[from] PinnedEventsLoaderError),

/// An error happened while operating the room's send queue.
Expand Down

0 comments on commit 912b121

Please sign in to comment.