Skip to content

Commit

Permalink
Merge pull request #426 from loathingKernel/develop
Browse files Browse the repository at this point in the history
SteamShortcuts: do not quote executable and start dir
  • Loading branch information
loathingKernel authored Jul 23, 2024
2 parents cc46218 + c671642 commit 8f456e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rare/models/steam.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ def create(
shortcut = cls.from_dict({})
shortcut.appid = cls.calculate_appid(app_name)
shortcut.AppName = app_title
shortcut.Exe = shlex.quote(executable)
shortcut.StartDir = shlex.quote(start_dir)
shortcut.icon = shlex.quote(icon)
shortcut.Exe = executable
shortcut.StartDir = start_dir
shortcut.icon = icon
shortcut.LaunchOptions = shlex.join(launch_options)
return shortcut

Expand Down

0 comments on commit 8f456e0

Please sign in to comment.