This commit is contained in:
Andras Bacsai 2023-06-23 11:07:42 +02:00
parent c44319251a
commit 97231bb477
3 changed files with 4 additions and 2 deletions

View File

@ -19,6 +19,8 @@ class PrivateKey extends Component
$uptime = instant_remote_process(['uptime'], $this->server); $uptime = instant_remote_process(['uptime'], $this->server);
if ($uptime) { if ($uptime) {
Toaster::success('Server is reachable with this private key.'); Toaster::success('Server is reachable with this private key.');
$this->server->settings->is_reachable = true;
$this->server->settings->is_usable = true;
} }
} catch (\Exception $e) { } catch (\Exception $e) {
$this->server->settings->is_reachable = false; $this->server->settings->is_reachable = false;

View File

@ -1,3 +1,3 @@
<?php <?php
return '4.0.0-beta.9'; return '4.0.0-beta.10';

View File

@ -4,7 +4,7 @@
"version": "3.12.32" "version": "3.12.32"
}, },
"v4": { "v4": {
"version": "4.0.0-beta.9" "version": "4.0.0-beta.10"
} }
} }
} }