Skip to content

Commit

Permalink
fix: updated_at for Assets Jobs (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmas authored May 23, 2024
1 parent e73263d commit b795e41
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Jobs/Assets/Character/Assets.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@ public function handle(): void
'character_id' => function () {
return $this->getCharacterId();
},
'updated_at' => $start,
'updated_at' => function () use ($start) {
return $start;
},
])->save();
});

Expand Down

0 comments on commit b795e41

Please sign in to comment.