Skip to content

Commit

Permalink
fix: platform_impl::ios::view::application_continue return type (#787)
Browse files Browse the repository at this point in the history
* fix: platform_impl::ios::view::application_continue return type

* change file

---------

Co-authored-by: Amr Bashir <[email protected]>
  • Loading branch information
logankeenan and amrbashir authored Aug 16, 2023
1 parent 19536b3 commit 65ebab8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changes/ios-application-continue-type.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"tao": patch
---

Fix compilation error on iOS.
2 changes: 1 addition & 1 deletion src/platform_impl/ios/view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ pub fn create_delegate_class() {
unsafe {
let webpage_url: id = msg_send![user_activity, webpageURL];
if webpage_url == nil {
return false;
return NO;
}
let absolute_url: id = msg_send![webpage_url, absoluteString];
let bytes = {
Expand Down

0 comments on commit 65ebab8

Please sign in to comment.