Skip to content

Commit 2becf97

Browse files
committed
fix: Notification crash
1 parent 6a51787 commit 2becf97

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Nickvision.Application.WinUI/App.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,19 @@ private async void App_NotificationInvoked(AppNotificationManager sender, AppNot
4040
{
4141
if (args.Arguments.ContainsKey("action") && args.Arguments["action"] == "OpenInExplorer")
4242
{
43-
if (!Directory.Exists(args.Arguments["path"]))
43+
if (!Directory.Exists(args.Arguments["param"]))
4444
{
4545
try
4646
{
4747
using var _ = Process.Start(new ProcessStartInfo()
4848
{
49-
FileName = args.Arguments["path"],
49+
FileName = args.Arguments["param"],
5050
UseShellExecute = true
5151
});
5252
}
5353
catch
5454
{
55-
await Launcher.LaunchFolderPathAsync(args.Arguments["path"]);
55+
await Launcher.LaunchFolderPathAsync(args.Arguments["param"]);
5656
}
5757
}
5858
}

resources/po/application.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: PACKAGE VERSION\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-03-23 22:59-0400\n"
11+
"POT-Creation-Date: 2026-03-23 23:15-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 <LL@li.org>\n"

0 commit comments

Comments
 (0)