minor change: fix gridtest + sort appsettings buckets

This commit is contained in:
gtoriadotnet 2022-03-24 01:24:08 -04:00
parent 37bbaf0cb9
commit 2406e0b764
2 changed files with 2 additions and 2 deletions

View File

@ -94,6 +94,8 @@ class AppSettings extends Controller
}
}
ksort($flags);
return JSON::EncodeResponse($flags);
} else {
return $this->error([

View File

@ -27,8 +27,6 @@ TestScript;
$test = new SoapService('http://192.168.0.3:64989');
$result = $test->OpenJob(SoapService::MakeJobJSON('test', 10, 0, 0, 'test render', $testScript));
return response($result);
return response(base64_decode($result->OpenJobExResult->LuaValue[0]->value))
->header('Content-Type', 'image/png');
}