You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
在xBlufi-wx-impl.js中,下面处理:
case 19: //自定义数据
let customData = [];
for (var i = 0; i <= result.length; i++) {
customData.push(String.fromCharCode(parseInt(result[i], 16)));
}
造成长度加1,最后一个数据无效,应该对应为:
for (var i = 0; i < result.length; i++) {
在xBlufi-wx-impl.js中,下面处理:
case 19: //自定义数据
let customData = [];
for (var i = 0; i <= result.length; i++) {
customData.push(String.fromCharCode(parseInt(result[i], 16)));
}
造成长度加1,最后一个数据无效,应该对应为:
for (var i = 0; i < result.length; i++) {