Skip to content

Commit

Permalink
feat: store all games for testing
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Gleich <[email protected]>
  • Loading branch information
gleich committed Jul 30, 2024
1 parent 2ac1d68 commit 9faf44d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/apis/steam/games.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func fetchRecentlyPlayedGames() []game {
sort.Slice(ownedGames.Response.Games, func(i, j int) bool {
return ownedGames.Response.Games[i].RTimeLastPlayed > ownedGames.Response.Games[j].RTimeLastPlayed
})
ownedGames.Response.Games = ownedGames.Response.Games[:10]
// ownedGames.Response.Games = ownedGames.Response.Games[:10]

var games []game
for _, g := range ownedGames.Response.Games {
Expand Down

0 comments on commit 9faf44d

Please sign in to comment.