From 8c3900b9efae987c4cdc05881a1fcad7eb09e4dd Mon Sep 17 00:00:00 2001 From: Timur Murtazin Date: Fri, 30 Oct 2020 18:10:36 +0300 Subject: [PATCH] fullScreenStories in props --- src/Chatium/Types.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Chatium/Types.php b/src/Chatium/Types.php index 07844f7..7cd6457 100644 --- a/src/Chatium/Types.php +++ b/src/Chatium/Types.php @@ -204,6 +204,7 @@ function Screen($props, array $blocks = []) if (isset($props['pinnedBlocks'])) $block['pinnedBlocks'] = $props['pinnedBlocks']; if (isset($props['chat'])) $block['chat'] = Chat($props['chat']); if (isset($props['fullScreenGallery'])) $block['fullScreenGallery'] = $props['fullScreenGallery']; + if (isset($props['fullScreenStories'])) $block['fullScreenStories'] = $props['fullScreenStories']; if (isset($props['footer'])) $block['footer'] = Footer($props['footer']); if (isset($props['search'])) $block['search'] = Search($props['search']); if (isset($props['needEmailCheck'])) $block['needEmailCheck'] = $props['needEmailCheck'];