Merge pull request #18728 from simonspa/trashbin_exception
Trash bin: fix exception triggered if no correct fileId is provided.
This commit is contained in:
commit
ada25ab461
|
@ -88,12 +88,12 @@ class PreviewController extends Controller {
|
|||
* @return DataResponse|Http\FileDisplayResponse
|
||||
*/
|
||||
public function getPreview(
|
||||
int $fileId,
|
||||
int $fileId = -1,
|
||||
int $x = 128,
|
||||
int $y = 128
|
||||
) {
|
||||
|
||||
if ($x === 0 || $y === 0) {
|
||||
if ($fileId === -1 || $x === 0 || $y === 0) {
|
||||
return new DataResponse([], Http::STATUS_BAD_REQUEST);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue