diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-03-16 11:28:23 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-03-25 16:04:41 +0100 |
commit | 5f044ebf1bc6f45acec2e79dc05185acd0405f42 (patch) | |
tree | 8bc8797ef55588d3aab1b160acb3e2f5576d460f /settings/ajax | |
parent | 13904a7f8979a87492ac765e05017eb1e4b69588 (diff) | |
download | nextcloud-server-5f044ebf1bc6f45acec2e79dc05185acd0405f42.tar.gz nextcloud-server-5f044ebf1bc6f45acec2e79dc05185acd0405f42.zip |
Add wrapper for Guzzle
Diffstat (limited to 'settings/ajax')
-rw-r--r-- | settings/ajax/checksetup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/ajax/checksetup.php b/settings/ajax/checksetup.php index 64718933317..c5f9088534d 100644 --- a/settings/ajax/checksetup.php +++ b/settings/ajax/checksetup.php @@ -13,7 +13,7 @@ OCP\JSON::callCheck(); // no warning when has_internet_connection is false in the config $hasInternet = true; if (OC_Util::isInternetConnectionEnabled()) { - $hasInternet = OC_Util::isInternetConnectionWorking(); + $hasInternet = OC_Util::isInternetConnectionWorking(\OC::$server->getHTTPClientService()); } OCP\JSON::success( |