We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b08f296 commit bd1242fCopy full SHA for bd1242f
Microsoft.Toolkit.Uwp.Notifications/DesktopNotificationManager/DesktopNotificationManagerCompat.cs
@@ -185,9 +185,9 @@ public static bool IsRunningAsUwp()
185
GetCurrentPackageFullName(ref length, sb);
186
187
sb = new StringBuilder(length);
188
- var result = GetCurrentPackageFullName(ref length, sb);
+ var error = GetCurrentPackageFullName(ref length, sb);
189
190
- _isRunningAsUwp = result != APPMODEL_ERROR_NO_PACKAGE;
+ _isRunningAsUwp = error != APPMODEL_ERROR_NO_PACKAGE;
191
}
192
193
0 commit comments