diff --git a/src/components/common/Composer.tsx b/src/components/common/Composer.tsx index 6eff048c1..7c070ca76 100644 --- a/src/components/common/Composer.tsx +++ b/src/components/common/Composer.tsx @@ -2062,7 +2062,7 @@ export default memo(withGlobal( isReactionPickerOpen: selectIsReactionPickerOpen(global), canBuyPremium: !isCurrentUserPremium && !selectIsPremiumPurchaseBlocked(global), canPlayAnimatedEmojis: selectCanPlayAnimatedEmojis(global), - canSendOneTimeMedia: isChatWithUser && !isChatWithBot && !isInScheduledList, + canSendOneTimeMedia: !isChatWithSelf && isChatWithUser && !isChatWithBot && !isInScheduledList, shouldCollectDebugLogs: global.settings.byKey.shouldCollectDebugLogs, sentStoryReaction, stealthMode: global.stories.stealthMode,