- NEW "Thera connections" UI module, closed #829

- Upgraded "[_pathfinder_esi_](https://github.com/exodus4d/pathfinder_esi)" Web API client`v1.3.2` → `v2.0.0`
- Fixed a js bug where current active(selected) system becomes deselected after system was dragged on map
- Fixed a js bug where new auto mapped systems (e.g. after jump) were positioned outside current map scroll viewport
- Fixed a js bug where map sync failed after map tabs switch
- Fixed blurry map when map zoom was changed
- Fixed multiple minor JS bugs where map render/update failed
This commit is contained in:
Mark Friedrich
2020-03-02 16:42:36 +01:00
parent 4a5636456e
commit a5f29ee2eb
123 changed files with 6169 additions and 5219 deletions

View File

@@ -565,7 +565,7 @@ class Controller {
'routes' => []
];
$serverStatus = $client->getServerStatus();
$serverStatus = $client->send('getServerStatus');
if( !isset($serverStatus['error']) ){
$statusData = $serverStatus['status'];
// calculate time diff since last server restart
@@ -587,7 +587,7 @@ class Controller {
$return->error[] = (new PathfinderException($serverStatus['error'], 500))->getError();
}
$apiStatus = $client->getStatusForRoutes('latest');
$apiStatus = $client->send('getStatus', 'latest', true);
if( !isset($apiStatus['error']) ){
// find top status
$status = 'OK';