Prevent schedule send UI from showing in story send flow.

This commit is contained in:
Cody Henthorne 2023-02-01 11:05:46 -05:00 committed by Greyson Parrelli
parent 4ad233c6d1
commit dae69744c2

View file

@ -219,7 +219,7 @@ class MediaReviewFragment : Fragment(R.layout.v2_media_review_fragment), Schedul
performSend() performSend()
} }
} }
if (FeatureFlags.scheduledMessageSends()) { if (FeatureFlags.scheduledMessageSends() && !sharedViewModel.isStory()) {
sendButton.setOnLongClickListener { sendButton.setOnLongClickListener {
ScheduleMessageContextMenu.show(it, (requireView() as ViewGroup)) { time: Long -> ScheduleMessageContextMenu.show(it, (requireView() as ViewGroup)) { time: Long ->
if (time == -1L) { if (time == -1L) {