Fix a source value for Premium key in the worker [MAILPOET-890]

This commit is contained in:
stoletniy
2017-05-25 15:43:02 +03:00
parent afa06342a5
commit fb940065ea
2 changed files with 6 additions and 2 deletions

View File

@ -14,7 +14,7 @@ class PremiumKeyCheck extends KeyCheckWorker {
}
function checkKey() {
$premium_key = Setting::getValue(Bridge::PREMIUM_KEY_STATE_SETTING_NAME);
$premium_key = Setting::getValue(Bridge::PREMIUM_KEY_SETTING_NAME);
$result = $this->bridge->checkPremiumKey($premium_key);
return $result;
}