Skip to content

Commit

Permalink
SteamGridDB: Use loop for getGridsForOwnedGames
Browse files Browse the repository at this point in the history
  • Loading branch information
sonic2kk committed Nov 19, 2023
1 parent d6db2d7 commit aae42ad
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion steamtinkerlaunch
Original file line number Diff line number Diff line change
Expand Up @@ -1626,7 +1626,9 @@ function commandlineGetSteamGridDBArtwork {

function getGridsForOwnedGames {
if checkSGDbApi; then
getSteamGridDBArtwork "$(getOwnedAids)"
while read -r OWNSTGAAID; do
getSteamGridDBArtwork "$OWNSTGAAID"
done <<< "$( getOwnedAids )"
fi
}
function getGridsForInstalledGames {
Expand Down

0 comments on commit aae42ad

Please sign in to comment.