From 52de6d05f8e11b889471ce423dc5f41fa60e09bc Mon Sep 17 00:00:00 2001 From: Adam Novak Date: Mon, 6 Apr 2026 02:11:17 -0400 Subject: [PATCH] Change to URL GIF format --- lib/helpers/gif_helper.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/helpers/gif_helper.dart b/lib/helpers/gif_helper.dart index 8dd187b..11302d1 100644 --- a/lib/helpers/gif_helper.dart +++ b/lib/helpers/gif_helper.dart @@ -33,6 +33,6 @@ class GifHelper { /// Encode a GIF in a format that parseGif() can parse. static String encodeGif(String gifId) { - return 'g:$gifId'; + return 'https://giphy.com/gifs/$gifId'; } }