From 8a1eda5126ffee8a08f98ba1106c71822efc7593 Mon Sep 17 00:00:00 2001 From: abdu-63 Date: Mon, 8 Jun 2026 22:25:46 +0200 Subject: [PATCH] fix: call %orig for visual messages when unlimited_replay is disabled --- src/Features/StoriesAndMessages/SeenButtons.x | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Features/StoriesAndMessages/SeenButtons.x b/src/Features/StoriesAndMessages/SeenButtons.x index 4a8ab14c..1a78e8ea 100644 --- a/src/Features/StoriesAndMessages/SeenButtons.x +++ b/src/Features/StoriesAndMessages/SeenButtons.x @@ -83,6 +83,8 @@ if (dmVisualMsgsViewedButtonEnabled) { %orig; } + } else { + %orig; } } - (void)visualMessageViewerController:(id)arg1 didEndPlaybackForVisualMessage:(id)arg2 atIndex:(NSInteger)arg3 mediaCurrentTime:(CGFloat)arg4 forNavType:(NSInteger)arg5 { @@ -91,6 +93,8 @@ if (dmVisualMsgsViewedButtonEnabled) { %orig; } + } else { + %orig; } } %end \ No newline at end of file