Skip to content

Commit

Permalink
Merge pull request #130 from urbanairship/MOBILE-2960
Browse files Browse the repository at this point in the history
[MOBILE-2960] Fix crash and prepare release 9.0.2
  • Loading branch information
Apekka authored Mar 15, 2022
2 parents 257007b + 6750c2c commit 9188bd2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Assets/Plugins/iOS/UAUnityPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ - (void)receivedNotificationResponse:(UNNotificationResponse *)notificationRespo
- (void)channelUpdated:(NSNotification *)notification {
NSString *channelID = notification.userInfo[UAChannel.channelUpdatedEvent];
UA_LDEBUG(@"channelUpdated: %@", channelID);
if (self.listener) {
if (self.listener && !channelID) {
UnitySendMessage(MakeStringCopy([self.listener UTF8String]),
"OnChannelUpdated",
MakeStringCopy([channelID UTF8String]));
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Unity Plugin ChangeLog

## Version 9.0.2 - March 15, 2022

Patch release that fixes an iOS crash related to push registration.

### Changes
- Fix iOS crash during registration

## Version 9.0.1 - March 1, 2022

Patch release that fixes an iOS error related to a wrong method name.
Expand Down
2 changes: 1 addition & 1 deletion airship.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Plugin version
version = 9.0.1
version = 9.0.2

# Urban Airship iOS SDK version
iosAirshipVersion = 16.1.1
Expand Down

0 comments on commit 9188bd2

Please sign in to comment.