Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
khmMouna committed Jul 11, 2024
1 parent 36d332b commit 8c3c9e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Airship.Net/Platforms/Android/Airship.cs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@ private static Features FeaturesFromUAFeatures(int uAFeatures)
public void FetchChannelSubscriptionList(Action<object> list)
{
PendingResult subscriptionsPendingResult = UAirship.Shared().Channel.FetchSubscriptionListsPendingResult();
list(subscriptionsPendingResult.Result);
var result = subscriptionsPendingResult.Result;
list(result);
}

public void FetchContactSubscriptionList(Action<Dictionary<string, object>> list)
Expand Down

0 comments on commit 8c3c9e7

Please sign in to comment.