mirror of
https://github.com/nextcloud/server.git
synced 2026-06-14 19:20:35 -04:00
This function is also used in a way such as:
```
$preview = new \OC\Preview(\OC_User::getUser(), 'files');
$info = \OC\Files\Filesystem::getFileInfo($file);
if (!$always and !$preview->isAvailable($info)) {
\OC_Response::setStatus(404);
} else {
$preview->setFile($file);
$preview->setMaxX($maxX);
$preview->setMaxY($maxY);
$preview->setScalingUp($scalingUp);
$preview->setKeepAspect($keepAspect);
}
```
Which won't work anymore since `setFile` is used instead of passing the file in the constructor. Fixes a regression in master.
|
||
|---|---|---|
| .. | ||
| l10n | ||
| private | ||
| public | ||
| repair | ||
| autoloader.php | ||
| base.php | ||