chore(ui): Update a log message.

This patch changes the log message. A `TimelineItemPosition::UpdateAt`
can only happen for remote event, not local event. The log message
was talking about _decryption_ but an `UpdateAt` can also happen for
redaction. This was misleading.
This commit is contained in:
Ivan Enderlin
2025-03-12 15:14:26 +01:00
parent 07c7b6ab2a
commit 968582af01

View File

@@ -1028,7 +1028,7 @@ impl<'a, 'o> TimelineEventHandler<'a, 'o> {
.as_event()
.and_then(|ev| Some(ev.as_remote()?.origin))
.unwrap_or_else(|| {
error!("Decryption retried on a local event");
error!("Tried to update a local event");
RemoteEventOrigin::Unknown
}),
};