-
Notifications
You must be signed in to change notification settings - Fork 16
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: Part 3 sync to upstream #533
fix: Part 3 sync to upstream #533
Conversation
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.
Great job @rnr ! I only found one bug, everything else looks great!
.padding(.top, 12) | ||
StyledButton(CourseLocalization.NotAvaliable.button, action: { | ||
if let url = URL(string: url), UIApplication.shared.canOpenURL(url) { | ||
UIApplication.shared.open(url) |
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.
The link does not open on the simulator and iOS 18 device.
BUG IN CLIENT OF UIKIT: The caller of UIApplication.openURL(:) needs to migrate to the non-deprecated UIApplication.open(:options:completionHandler:). Force returning false (NO).
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.
Nice catch @IvanStepanok !
This is caused by a Facebook SDK bug. To solve the problem, increase its version. Please re-check
Thank you
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.
LGFM
This PR contains synchronisation code to solve a problem where a course has gated content and user tap in coursework doesn't work (e.g. ‘IBM's The Data Science Method’ course and some of the graded quizzes in it).
original PR: edx#37
After fix we show page: