Skip to content

Commit

Permalink
fix missing argument after this was merged and deployed
Browse files Browse the repository at this point in the history
Signed-off-by: Matthieu Gallien <[email protected]>
  • Loading branch information
mgallien committed Aug 27, 2024
1 parent 4245b76 commit b1b7ed8
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@
$isFileProvider = isset($_GET['fileprovider']) ? true : false;
$channel = isset($_GET['channel']) ? (string)$_GET['channel'] : 'stable';

$osRelease = '';
$osVersion = '';
$kernelVersion = '';

if($oem === null || $platform === null || $version === null) {
die();
}
Expand All @@ -100,9 +104,12 @@
$oem,
$platform,
$version,
$osRelease,
$osVersion,
$kernelVersion,
$channel,
$isSparkle,
$isFileProvider,
$isFileProvider,
$config
);
echo $response->buildResponse();

0 comments on commit b1b7ed8

Please sign in to comment.