Browse Source

Send the mime icon if we can't generate a preview

remotes/origin/poc-doctrine-migrations
Olivier Paroz 11 years ago
parent
commit
13617a0475
  1. 5
      lib/private/preview.php

5
lib/private/preview.php

@ -701,9 +701,12 @@ class Preview {
$this->generatePreview($fileId);
}
// We still don't have a preview, so we generate an empty object which can't be displayed
// We still don't have a preview, so we send back the mime icon
if (is_null($this->preview)) {
$this->preview = new \OC_Image();
$mimeIconWebPath = \OC_Helper::mimetypeIcon($this->mimeType);
$mimeIconServerPath = str_replace(\OC::$WEBROOT, \OC::$SERVERROOT, $mimeIconWebPath);
$this->preview->loadFromFile($mimeIconServerPath);
}
return $this->preview;

Loading…
Cancel
Save