From fcc467cd0ee6bee8ce38d98aa4f091be9d174f12 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 24 Oct 2018 19:02:43 -0700 Subject: [PATCH] fix 71:40 ratio --- Source/functions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/functions.php b/Source/functions.php index f098ede3..2bfff6aa 100644 --- a/Source/functions.php +++ b/Source/functions.php @@ -41,6 +41,9 @@ function get_title($width, $height) { } else if ($ratio[0] == 683 && $ratio[1] == 384) { // common sense return $title; + } else if ($ratio[0] == 71 && $ratio[1] == 40) { + // common sense + return $title; } else { $title = $title . " (" . $ratio[0] .":". $ratio[1] . ")"; }