Skip to content
  • Lukas Reschke's avatar
    Throw error in showPreview instead the constructor · 6869d2e8
    Lukas Reschke authored
    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.
    6869d2e8