This repository was archived by the owner on Oct 19, 2025. It is now read-only.

Description
BHRouter 调用canOpenURL 时,使用URL.pathComponents获得的pathComponents会存在/,直接导致校验pathComponentKey是否为Class时,提前退出。
判断代码,当pathComponentKey为/会报错。
Class mClass = NSClassFromString(pathComponentKey);
if (!mClass) {
flag = NO;
*stop = NO;
return;
}
建议添加一行过滤代码
if ([pathComponentKey isEqualToString:@"/"]) {
return;
}