From d2eab603c1d34a4f0d310183064a2f39071dfd2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Wed, 12 Nov 2025 10:12:15 +0100 Subject: [PATCH] fix(event-cache): Limit the visibility of room_linked_chunk_mut a bit better --- crates/matrix-sdk/src/event_cache/room/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/matrix-sdk/src/event_cache/room/mod.rs b/crates/matrix-sdk/src/event_cache/room/mod.rs index 4ea5dcfab..e51bc95fd 100644 --- a/crates/matrix-sdk/src/event_cache/room/mod.rs +++ b/crates/matrix-sdk/src/event_cache/room/mod.rs @@ -1303,7 +1303,7 @@ mod private { /// Returns a mutable reference to the underlying room linked chunk. #[cfg(feature = "e2e-encryption")] - pub(in crate::event_cache) fn room_linked_chunk_mut(&mut self) -> &mut EventLinkedChunk { + pub(in super::super) fn room_linked_chunk_mut(&mut self) -> &mut EventLinkedChunk { &mut self.room_linked_chunk }