-
Notifications
You must be signed in to change notification settings - Fork 500
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix display of incoming call for group calls when receiving VOIP noti… #7875
Fix display of incoming call for group calls when receiving VOIP noti… #7875
Conversation
283c430
to
d5fc324
Compare
…fication Author reset
d5fc324
to
fb0226f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for looking into the cause of this @hek4ek. Once small suggestion below 👇
Otherwise looks reasonable to me.
Happy to address the suggestion, it’s just that I can’t see it… Is there something missed? |
Huh, not sure where it went, should be there now. |
Co-authored-by: Doug <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #7875 +/- ##
============================================
- Coverage 62.06% 16.21% -45.86%
============================================
Files 504 1810 +1306
Lines 21096 173591 +152495
Branches 7964 67307 +59343
============================================
+ Hits 13094 28150 +15056
- Misses 7973 145393 +137420
- Partials 29 48 +19
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perfect, thanks @hek4ek, this looks good to me 👍
@pixlwave , thank you as well! |
Should be TestFlight around the 10th and App Store around the 16th if everything is on schedule. |
Got it, thank you! |
…fication
Problem: When making a group call and the "Ring for group calls" option is enabled, the incoming call is not displayed (CallKit functionality)
Reason: The name for the incoming call is generated via the localizedUserNotificationStringForKey method of the NSString extension, but the result of the method is an instance of the UNLocalizedString class, which is not allowed for the CallKit subsystem. This is reported by the operating system log:
and also the following error:
and 6 seconds after these errors the system stops the application with the following reason:
Solution: explicitly cast the result of localizedUserNotificationStringForKey to NSString
Pull Request Checklist
Signed-off-by: [email protected]
Fixes #7858