Skip to content

Commit 7cdc7d5

Browse files
committed
SteamGridDB: Fix notifier calls
1 parent 170010a commit 7cdc7d5

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

lang/english.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1275,5 +1275,5 @@ DESC_FSGDBAWSEARCHNAME="Optionally specify a name to for SteamGridDB to try and
12751275
GUI_FSGDBAWEXISTINGFILEACTION="Override"
12761276
GUI_FSGDBAWAPPLYARTWORK="Apply Artwork"
12771277
DESC_FSGDBAWAPPLYARTWORK="Download artwork into Steam grid directory to apply to apply it immediately"
1278-
NOTY_FSGDBAW="Fetching SteamGridDB Artwork for XXX game 'YYY'"
1278+
NOTY_FSGDBAW="Fetching SteamGridDB Artwork for 'XXX'"
12791279
NOTY_FSGDBAWINVALID="Cannot fetch SteamGridDB Artwork, must provide AppID, Game ID, or Game Name!"

steamtinkerlaunch

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1589,16 +1589,14 @@ function getSteamGridDBArtworkGUI {
15891589
return
15901590
fi
15911591

1592-
# TODO Notifier for what we're searching on (Steam/NonSteam/etc)?
1592+
notiShow "$( strFix "$NOTY_FSGDBAW" "$FSGDBAW_HEADERTITLE" )"
15931593

15941594
FSGDBAWGAMETYPEFLAG="--nonsteam" # Default to non-steam, since Game ID and Game Name will use SGDB /game/ endpoint
15951595
if [ -n "$FSGDBAWAPPID" ]; then
15961596
FSGDBAWGAMETYPEFLAG="--steam" # Only use SGDB Steam game endpoint if we pass a Steam AppID to search for artwork on
15971597
FSGDBAWSEARCHID="${FSGDBAWAPPID}"
1598-
notiShow "$( strFix "$NOTY_FSGDBAW" "Steam" "$FSGDBAW_HEADERTITLE" )"
15991598
else
16001599
FSGDBAWSEARCHID="${FSGDBAWGAMEID}"
1601-
notiShow "$( strFix "$NOTY_FSGDBAW" "Non-Steam" "$FSGDBAW_HEADERTITLE" )"
16021600
fi
16031601

16041602
FSGDBAWAPPLYARTWORKFLAG="--apply" # Checkbox is defaulted to 1 (enabled), so default flag to '--apply'

0 commit comments

Comments
 (0)