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)