Skip to content

Commit

Permalink
logic
Browse files Browse the repository at this point in the history
  • Loading branch information
dqwiki authored Jan 30, 2023
1 parent 3023c6b commit 42ed4cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Console/Commands/Jobs/SendAppealKeyViaEmailCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function handle()
$this->info('Sending AppealKey Email...');
$appeal = Appeal::findOrFail($this->argument('id'));
// check if the user can be e-mailed according to MediaWiki API
if (!$appeal->user_verified == -1) {
if ($appeal->user_verified == -1) {
$this->info("User hasn't set email address onwiki - can't send key");
return;
}
Expand Down

0 comments on commit 42ed4cf

Please sign in to comment.