Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-12-18 10:36:30 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-12-18 10:36:30 +0300
commit86dccffff94c063194838905bb59aedf51c954aa (patch)
tree9a281ed196624376a5c94fc226d5205b9bcd4ae2 /lib
parentac045a2461c3532d6c6ca6c33033871b1b0e1dc1 (diff)
Fix Office preview generation
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Preview/Office.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Preview/Office.php b/lib/private/Preview/Office.php
index af6a2ef89f8..bdf8c528135 100644
--- a/lib/private/Preview/Office.php
+++ b/lib/private/Preview/Office.php
@@ -60,7 +60,7 @@ abstract class Office extends ProviderV2 {
$pngPreview = null;
try {
list($dirname, , , $filename) = array_values(pathinfo($absPath));
- $pngPreview = $dirname . '/' . $filename . '.png';
+ $pngPreview = $tmpDir . '/' . $filename . '.png';
$png = new \imagick($pngPreview . '[0]');
$png->setImageFormat('jpg');