Skip to content

Commit

Permalink
fix(game): remediate server error from 'Updated' field
Browse files Browse the repository at this point in the history
  • Loading branch information
wescopeland committed Jan 30, 2025
1 parent 88e9db7 commit 360a1ac
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 360a1ac

Please sign in to comment.