Skip to content

Commit

Permalink
fix(game): remediate server error from 'Updated' field (#3158)
Browse files Browse the repository at this point in the history
  • Loading branch information
wescopeland committed Feb 2, 2025
1 parent fee55e1 commit 8b6014a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/components/game/claim-info.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
$achievement = Achievement::where('GameID', $achievementSetClaim->game->id)
->where('user_id', $achievementSetClaim->user->id)
->orderByDesc('Updated')
->first(['Updated as updated_at']);
->first(['Updated']);
if ($achievement?->updated_at) {
$lastPlayed = $achievement->updated_at;
Expand Down

0 comments on commit 8b6014a

Please sign in to comment.