From 193c9fcaf778b4264e4cc4fe1f1d06a1820e8bd9 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Mon, 10 Jul 2023 13:10:35 +0200 Subject: [PATCH] wait #6118 @0:05 --- src/Links/ContentLink.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Links/ContentLink.php b/src/Links/ContentLink.php index 0764819..9eb313e 100644 --- a/src/Links/ContentLink.php +++ b/src/Links/ContentLink.php @@ -60,7 +60,7 @@ class ContentLink extends Link { if (isset($animation['type']) && in_array($animation['type'], $hiddenAnimations)) { return true; } - if ($animation['type'] === 'scalefrom' && isset($animation['scale']) && $animation['scale'] <= 0) { + if (isset($animation['type']) && $animation['type'] === 'scalefrom' && isset($animation['scale']) && $animation['scale'] <= 0) { return true; } } -- 2.39.5