Skip to content

Commit 33f9051

Browse files
committed
refactor: use consistent int type for lockIdentifier
1 parent 20b4976 commit 33f9051

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apple/RNCWebViewManager.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,9 +239,9 @@ - (RCTUIView *)view
239239
}];
240240
}
241241

242-
RCT_EXPORT_METHOD(startLoadWithResult:(BOOL)result lockIdentifier:(NSInteger)lockIdentifier)
242+
RCT_EXPORT_METHOD(startLoadWithResult:(BOOL)result lockIdentifier:(int)lockIdentifier)
243243
{
244-
[[RNCWebViewDecisionManager getInstance] setResult:result forLockIdentifier:(int)lockIdentifier];
244+
[[RNCWebViewDecisionManager getInstance] setResult:result forLockIdentifier:lockIdentifier];
245245
}
246246

247247
@end

0 commit comments

Comments
 (0)