diff --git a/Windows/samples/GraphNotificationsSample/ConnectedDevicesManager.cs b/Windows/samples/GraphNotificationsSample/ConnectedDevicesManager.cs index 98bea70..3dc3ab8 100644 --- a/Windows/samples/GraphNotificationsSample/ConnectedDevicesManager.cs +++ b/Windows/samples/GraphNotificationsSample/ConnectedDevicesManager.cs @@ -253,6 +253,9 @@ namespace SDKTemplate if (notification != null) { await m_platform.ProcessNotificationAsync(notification); + + // Wait for 15 seconds for platform to process to notification + await Task.Delay(TimeSpan.FromSeconds(15)); } }