diff --git a/4chan_x.user.js b/4chan_x.user.js index 8a31910f4..b3319ad66 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3469,6 +3469,7 @@ AutoGif = { init: function() { + if (g.BOARD === 'gif') return; return Main.callbacks.push(this.node); }, node: function(post) { diff --git a/changelog b/changelog index fd05e3540..f8413bbd0 100644 --- a/changelog +++ b/changelog @@ -1,4 +1,6 @@ master +- Mayhem + Auto-GIF will not run in /gif/. 2.29.3 - Mayhem diff --git a/script.coffee b/script.coffee index f9619dd90..8e930ed96 100644 --- a/script.coffee +++ b/script.coffee @@ -2905,6 +2905,7 @@ ImageHover = AutoGif = init: -> + return if g.BOARD is 'gif' Main.callbacks.push @node node: (post) -> return if post.root.hidden or not post.img