Skip to content

Commit

Permalink
Fix missed wrong appeal types (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
supertassu authored Dec 10, 2020
1 parent a81b41d commit 9850790
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Jobs/GetBlockDetailsJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function handleBlockData(Block $block)
LogEntry::create([
'user_id' => 0,
'model_id' => $this->appeal->id,
'model_type' => 'appeal',
'model_type' => Appeal::class,
'action' => 'closed - duplicate',
'reason' => 'this appeal duplicates appeal #' . $duplicateAppeal->id,
'ip' => 'DB entry',
Expand All @@ -95,7 +95,7 @@ public function handleBlockData(Block $block)
LogEntry::create([
'user_id' => 0,
'model_id' => $this->appeal->id,
'model_type' => 'appeal',
'model_type' => Appeal::class,
'action' => 'closed - invalidate',
'reason' => 'banned from UTRS',
'ip' => 'DB entry',
Expand Down

0 comments on commit 9850790

Please sign in to comment.