Skip to content

Commit 42ed4cf

Browse files
authored
logic
1 parent 3023c6b commit 42ed4cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/Console/Commands/Jobs/SendAppealKeyViaEmailCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function handle()
2222
$this->info('Sending AppealKey Email...');
2323
$appeal = Appeal::findOrFail($this->argument('id'));
2424
// check if the user can be e-mailed according to MediaWiki API
25-
if (!$appeal->user_verified == -1) {
25+
if ($appeal->user_verified == -1) {
2626
$this->info("User hasn't set email address onwiki - can't send key");
2727
return;
2828
}

0 commit comments

Comments
 (0)