diff --git a/Telegram/SourceFiles/media/view/media_view_overlay_widget.cpp b/Telegram/SourceFiles/media/view/media_view_overlay_widget.cpp index 1c68f2dbc..a5aeda804 100644 --- a/Telegram/SourceFiles/media/view/media_view_overlay_widget.cpp +++ b/Telegram/SourceFiles/media/view/media_view_overlay_widget.cpp @@ -1036,9 +1036,11 @@ QSize OverlayWidget::flipSizeByRotation(QSize size) const { bool OverlayWidget::hasCopyMediaRestriction(bool skipPremiumCheck) const { if (const auto story = _stories ? _stories->story() : nullptr) { - return skipPremiumCheck - ? !story->canDownloadIfPremium() - : !story->canDownloadChecked(); + // AyuGram: removed; allow downloading any stories + return false; +// return skipPremiumCheck +// ? !story->canDownloadIfPremium() +// : !story->canDownloadChecked(); } return (_history && !_history->peer->allowsForwarding()) || (_message && _message->forbidsSaving());