Skip to content

Commit

Permalink
fix(vfs): fix VFSUriLoader crash
Browse files Browse the repository at this point in the history
  • Loading branch information
etkmao committed Sep 20, 2023
1 parent 2ecd44b commit 5776f96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/vfs/ios/VFSUriLoader.mm
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
string_view msg([error.localizedDescription UTF8String]?:"");
auto shared_this = weak_this.lock();
if (shared_this) {
DoRequestResultCallback(uri, startPoint, endPoint, static_cast<int32_t>(error.code), msg);
DoRequestResultCallback(uri, startPoint, endPoint, static_cast<int32_t>(error.code), msg);
}
if (completion) {
completion(data, response, error);
Expand Down

0 comments on commit 5776f96

Please sign in to comment.