diff --git a/core/repository.class.php b/core/repository.class.php index 8d654775f..c08067597 100644 --- a/core/repository.class.php +++ b/core/repository.class.php @@ -238,7 +238,7 @@ public function getCoreUpdateDownloadLink(){ if((int)$arrJson->status == 0 || !strlen((string)$arrJson->link)){ return array('status' => 0, 'error' => ((string)$arrJson->error == 'blacklistet') ? 403 : 404); } elseif((int)$arrJson->status == 1) { - return array('status' => 1, 'link' => (string)$arrJson->link, 'hash' => (string)$arrJson->hash, 'signature' => (string)$arrJson->signature, 'note' => (($arrJson->releasenote) ? (string)$arrJson->releasenote : '')); + return array('status' => 1, 'link' => (string)$arrJson->link, 'hash' => (string)$arrJson->hash_sha256, 'signature' => (string)$arrJson->signature_sha256, 'note' => (($arrJson->releasenote) ? (string)$arrJson->releasenote : '')); } return false;