make sure preview prop is instanceof OC_Image before using it in showPreview

remotes/origin/fix-10825
Georg Ehrke 11 years ago
parent 69726d951e
commit 071e4bfc06
  1. 4
      lib/private/preview.php

@ -548,7 +548,9 @@ class Preview {
if (is_null($this->preview)) {
$this->getPreview();
}
$this->preview->show($mimeType);
if ($this->preview instanceof \OC_Image) {
$this->preview->show($mimeType);
}
}
/**

Loading…
Cancel
Save