update appstore api url

remotes/origin/fix-10825
Frank Karlitschek 2014-07-17 21:54:46 +07:00
parent 5665686da5
commit f92b5a2507
2 changed files with 2 additions and 2 deletions

@ -88,7 +88,7 @@ $CONFIG = array(
"appstoreenabled" => true, "appstoreenabled" => true,
/* URL of the appstore to use, server should understand OCS */ /* URL of the appstore to use, server should understand OCS */
"appstoreurl" => "http://api.apps.owncloud.com/v1", "appstoreurl" => "https://api.owncloud.com/v1",
/* Domain name used by ownCloud for the sender mail address, e.g. no-reply@example.com */ /* Domain name used by ownCloud for the sender mail address, e.g. no-reply@example.com */
"mail_domain" => "example.com", "mail_domain" => "example.com",

@ -37,7 +37,7 @@ class OC_OCSClient{
*/ */
private static function getAppStoreURL() { private static function getAppStoreURL() {
if(OC_Util::getEditionString()===''){ if(OC_Util::getEditionString()===''){
$default='http://api.apps.owncloud.com/v1'; $default='https://api.owncloud.com/v1';
}else{ }else{
$default=''; $default='';
} }