From ed2ea75938e2a9a0721b20f5159046a2e199f487 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 4 Feb 2019 08:53:54 -0500 Subject: [PATCH] invoke Dispatch handler --- src/Android/Services/GoogleAnalyticsService.cs | 1 + src/iOS.Core/Services/GoogleAnalyticsService.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/src/Android/Services/GoogleAnalyticsService.cs b/src/Android/Services/GoogleAnalyticsService.cs index 7955d1b1b..bda3bc9c5 100644 --- a/src/Android/Services/GoogleAnalyticsService.cs +++ b/src/Android/Services/GoogleAnalyticsService.cs @@ -40,6 +40,7 @@ namespace Bit.Android.Services public void Dispatch(Action completionHandler = null) { + completionHandler?.Invoke(); } public void SetAppOptOut(bool optOut) diff --git a/src/iOS.Core/Services/GoogleAnalyticsService.cs b/src/iOS.Core/Services/GoogleAnalyticsService.cs index 869cc765b..a8eb843ec 100644 --- a/src/iOS.Core/Services/GoogleAnalyticsService.cs +++ b/src/iOS.Core/Services/GoogleAnalyticsService.cs @@ -37,6 +37,7 @@ namespace Bit.iOS.Core.Services public void Dispatch(Action completionHandler = null) { + completionHandler?.Invoke(); } public void SetAppOptOut(bool optOut)