From 7cc2143bb3119d4fe4810876549230c17dea90ba Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Sat, 21 Dec 2019 08:53:13 +0100 Subject: [PATCH] Movie#getThumbnail(): compare Movie#generateThumbNail() to null, not false Signed-off-by: Alexander A. Klimov --- lib/private/Preview/Movie.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/private/Preview/Movie.php b/lib/private/Preview/Movie.php index b7b7c98e50f..57cf9ddeaf4 100644 --- a/lib/private/Preview/Movie.php +++ b/lib/private/Preview/Movie.php @@ -52,9 +52,9 @@ class Movie extends ProviderV2 { $absPath = $this->getLocalFile($file, 5242880); // only use the first 5MB $result = $this->generateThumbNail($maxX, $maxY, $absPath, 5); - if ($result === false) { + if ($result === null) { $result = $this->generateThumbNail($maxX, $maxY, $absPath, 1); - if ($result === false) { + if ($result === null) { $result = $this->generateThumbNail($maxX, $maxY, $absPath, 0); } } -- 2.39.5