Skip to content

Commit c82e77f

Browse files
committed
Oops
1 parent 9df043c commit c82e77f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

po/reminders.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: reminders\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2023-05-14 15:58-0400\n"
11+
"POT-Creation-Date: 2023-05-14 16:07-0400\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <[email protected]>\n"

src/browser/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def do_command_line(self, command):
104104
if files:
105105
for file in files:
106106
# handling for windows URL protocol activation
107-
prefix = f'{info.app_id}:'
107+
prefix = f'{info.app_id}.Open:'
108108
if file.startswith(prefix):
109109
args = file[len(prefix):]
110110
args = args.split(';')

src/service/backend.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ def _create_notification_windows(self, reminder_id):
683683
duration="long"
684684
scenario="reminder"
685685
displayTimestamp="{self._timestamp_to_rfc(reminder['timestamp'])}"
686-
launch="{info.app_id}:action=notification-clicked"
686+
launch="{info.app_id}.Open:action=notification-clicked"
687687
activationType="protocol">
688688
<visual>
689689
<binding template="ToastGeneric">
@@ -694,7 +694,7 @@ def _create_notification_windows(self, reminder_id):
694694
<actions>
695695
<action
696696
content="{COMPLETE_BTN_TEXT}"
697-
arguments="{info.app_id}:no-activate;action=reminder-completed;param={reminder_id}"
697+
arguments="{info.app_id}.Open:no-activate;action=reminder-completed;param={reminder_id}"
698698
activationType="protocol"/>
699699
</actions>
700700
<audio silent="{'false' if self.app.settings.get_boolean('notification-sound') else 'true'}"/>

0 commit comments

Comments
 (0)