From 444bcdf70ce7f6608b00da798581e51169c1c4c8 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 18 Oct 2017 22:32:42 -0700 Subject: [PATCH] Fix 427:240 aspect ratio naming --- Source/functions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/functions.php b/Source/functions.php index d801f51b..052d7f17 100644 --- a/Source/functions.php +++ b/Source/functions.php @@ -29,6 +29,9 @@ function get_title($width, $height) { } else if ($ratio[0] == 8 && $ratio[1] == 5) { // common sense $title = $title . " (16:10)"; + } else if ($ratio[0] == 427 && $ratio[1] == 240) { + // common sense + return $title; } else { $title = $title . " (" . $ratio[0] .":". $ratio[1] . ")"; }