diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3ed79700..e1269775 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,11 +2,6 @@ name: "Test" on: - push: - branches: [ main ] - pull_request: - # The branches below must be a subset of the branches above - branches: [ main ] workflow_dispatch: jobs: diff --git a/rare/utils/models.py b/rare/utils/models.py index 7282eed4..37b152ec 100644 --- a/rare/utils/models.py +++ b/rare/utils/models.py @@ -141,7 +141,7 @@ class GlobalSignals(QObject): overlay_installation_finished = pyqtSignal() update_gamelist = pyqtSignal(list) - game_uninstalled = pyqtSignal(str) + game_uninstalled = pyqtSignal(str) # appname set_discord_rpc = pyqtSignal(str) # app_name of running game rpc_settings_updated = pyqtSignal() diff --git a/rare/utils/utils.py b/rare/utils/utils.py index 17d89049..6a9bcda9 100644 --- a/rare/utils/utils.py +++ b/rare/utils/utils.py @@ -330,7 +330,7 @@ def create_desktop_link(app_name=None, core: LegendaryCore = None, type_of_link= linkName = igame.title # TODO: this conversion is not applied everywhere (see base_installed_widget), should it? for c in r'<>?":|\/*': - linkName.replace(c, "") + linkName = linkName.replace(c, "") linkName = f"{linkName.strip()}.lnk"