Fix default URL of updates server

This commit is contained in:
Dmitriy Simushev 2015-06-04 10:16:51 +00:00
parent 4e7f9eac50
commit 5397f7014a

View File

@ -68,7 +68,7 @@ class UpdateChecker
public function getUrl()
{
return is_null($this->url)
? 'https://mibew.org/api/auto-updates'
? 'https://mibew.org/api/updates.json'
: $this->url;
}