From 7361c71d2b47685e94c34901ad78e0351c70e943 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Fri, 30 Oct 2020 19:07:32 -0500 Subject: [PATCH] Don't allow zooming on animated gifs because zooming doesn't support them --- Account/Sources/Account/FeedProvider/Reddit/RedditLink.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Account/Sources/Account/FeedProvider/Reddit/RedditLink.swift b/Account/Sources/Account/FeedProvider/Reddit/RedditLink.swift index 1e859f81f..ff91ddca4 100644 --- a/Account/Sources/Account/FeedProvider/Reddit/RedditLink.swift +++ b/Account/Sources/Account/FeedProvider/Reddit/RedditLink.swift @@ -98,7 +98,7 @@ final class RedditLinkData: Codable { guard let url = url else { return "" } if url.hasSuffix(".gif") { - return "" + return "" } if isVideo ?? false, let videoURL = media?.video?.hlsURL {