summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android.AppLinks
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Android.AppLinks')
-rw-r--r--Xamarin.Forms.Platform.Android.AppLinks/AndroidAppLinks.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Xamarin.Forms.Platform.Android.AppLinks/AndroidAppLinks.cs b/Xamarin.Forms.Platform.Android.AppLinks/AndroidAppLinks.cs
index b1639da7..975e65fb 100644
--- a/Xamarin.Forms.Platform.Android.AppLinks/AndroidAppLinks.cs
+++ b/Xamarin.Forms.Platform.Android.AppLinks/AndroidAppLinks.cs
@@ -91,11 +91,11 @@ namespace Xamarin.Forms.Platform.Android.AppLinks
{
if (appLink.IsLinkActive)
{
- Statuses resultStartAgain = await AppIndex.AppIndexApi.StartAsync(_client, indexAction);
+ await AppIndex.AppIndexApi.StartAsync(_client, indexAction);
}
else
{
- Statuses resultEnd = await AppIndex.AppIndexApi.EndAsync(_client, indexAction);
+ await AppIndex.AppIndexApi.EndAsync(_client, indexAction);
}
}
};