Revert renaming variable in Console\GlobalCommunityBlock

This commit is contained in:
Hypolite Petovan 2019-05-16 08:42:07 -04:00
parent dbedcdbf69
commit 8b3592b08c
1 changed files with 3 additions and 3 deletions

View File

@ -61,13 +61,13 @@ HELP;
throw new \RuntimeException('Database isn\'t ready or populated yet');
}
$contact_url = Contact::getIdForURL($this->getArgument(0));
if (!$contact_url) {
$contact_id = Contact::getIdForURL($this->getArgument(0));
if (!$contact_id) {
throw new \RuntimeException(L10n::t('Could not find any contact entry for this URL (%s)', $this->getArgument(0)));
}
$block_reason = $this->getArgument(1);
if(Contact::block($contact_url, $block_reason)) {
if(Contact::block($contact_id, $block_reason)) {
$this->out(L10n::t('The contact has been blocked from the node'));
} else {
throw new \RuntimeException('The contact block failed.');