Skip to content

Commit

Permalink
fix an issue with fetch channels subscription list on ios
Browse files Browse the repository at this point in the history
  • Loading branch information
khmMouna committed Jul 15, 2024
1 parent 48f76dc commit f8d2c0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Airship.Net/Platforms/iOS/Airship.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public void FetchChannelSubscriptionLists(Action<List<string>> subscriptions)
var list = new List<string>();
if (lists is not null)
{
foreach (string subscription in list)
foreach (string subscription in lists)
{
list.Add(subscription.ToString());
}
Expand Down

0 comments on commit f8d2c0c

Please sign in to comment.