From cd211a0013fcc94fd47f87d84b7f13b69c700397 Mon Sep 17 00:00:00 2001 From: ARIYAMA Keiji Date: Fri, 9 Jul 2021 17:29:01 +0900 Subject: [PATCH] Fix crash on Nearby GetStatusAsync method --- .../Additions/ExposureNotificationClient.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Android/ExposureNotification/source/PlayServicesNearby/Additions/ExposureNotificationClient.cs b/Android/ExposureNotification/source/PlayServicesNearby/Additions/ExposureNotificationClient.cs index 72554b86d1..0a19f26dfe 100644 --- a/Android/ExposureNotification/source/PlayServicesNearby/Additions/ExposureNotificationClient.cs +++ b/Android/ExposureNotification/source/PlayServicesNearby/Additions/ExposureNotificationClient.cs @@ -64,8 +64,8 @@ public async Task> GetExposureWindowsAsync(string token) public async Task GetPackageConfigurationAsync() => await NativeGetPackageConfiguration().CastTask(); - public async Task GetStatusAsync() - => await NativeGetStatus().CastTask(); + public async Task> GetStatusAsync() + => await NativeGetStatus().CastTask>(); } internal static class GoogleTaskExtensions