diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-03-10 18:10:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-10 18:10:49 +0100 |
commit | 350aa8d8d242115f83523b51f72077d705a1a62a (patch) | |
tree | a5ca70b6f76b8e47aa37106ba685c570d3ed113c | |
parent | c38f87e799c93942c79dfe972b74fa3c2860793d (diff) | |
parent | 53640bbc47b456f542f3fa203a5f9d6df41bc601 (diff) | |
download | nextcloud-server-350aa8d8d242115f83523b51f72077d705a1a62a.tar.gz nextcloud-server-350aa8d8d242115f83523b51f72077d705a1a62a.zip |
Merge pull request #3794 from nextcloud/fix_2739
MP3 without cover don't get a preview
-rw-r--r-- | lib/private/Preview/MP3.php | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/lib/private/Preview/MP3.php b/lib/private/Preview/MP3.php index 804ec7fbcd9..05cd7c0edb1 100644 --- a/lib/private/Preview/MP3.php +++ b/lib/private/Preview/MP3.php @@ -61,24 +61,6 @@ class MP3 extends Provider { } } - return $this->getNoCoverThumbnail(); + return false; } - - /** - * Generates a default image when the file has no cover - * - * @return bool|\OCP\IImage false if the default image is missing or invalid - */ - private function getNoCoverThumbnail() { - $icon = \OC::$SERVERROOT . '/core/img/filetypes/audio.svg'; - - if(!file_exists($icon)) { - return false; - } - - $image = new \OC_Image(); - $image->loadFromFile($icon); - return $image->valid() ? $image : false; - } - } |