mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 09:13:19 -04:00
Better error handeling in testremote
This commit is contained in:
parent
361607c72d
commit
f2ebac5c76
1 changed files with 7 additions and 3 deletions
|
|
@ -11,9 +11,13 @@ OCP\JSON::checkAppEnabled('files_sharing');
|
|||
$remote = $_GET['remote'];
|
||||
|
||||
function testUrl($url) {
|
||||
$result = file_get_contents($url);
|
||||
$data = json_decode($result);
|
||||
return is_object($data) and !empty($data->version);
|
||||
try {
|
||||
$result = file_get_contents($url);
|
||||
$data = json_decode($result);
|
||||
return is_object($data) and !empty($data->version);
|
||||
} catch (Exception $e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if (testUrl('https://' . $remote . '/status.php')) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue