We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
web/js/timeline-loader-smartphone.js
255行目 if (!json.data[i].body_html.match(/img.*src=/)) は body_html が null になるケースでエラーになります。
if (!json.data[i].body_html.match(/img.*src=/))
body_html
null
web/js/timeline-loader.api.js
同じく417行目 if (!json.data[i].body_html.match(/img.*src=/)) も body_html が null になるケースでエラーになります。
いずれも
if (!String(json.data[i].body_html).match(/img.*src=/)) のように文字列型にキャストして対処しました。
if (!String(json.data[i].body_html).match(/img.*src=/))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
web/js/timeline-loader-smartphone.js
255行目
if (!json.data[i].body_html.match(/img.*src=/))
はbody_html
がnull
になるケースでエラーになります。web/js/timeline-loader.api.js
同じく417行目
if (!json.data[i].body_html.match(/img.*src=/))
もbody_html
がnull
になるケースでエラーになります。いずれも
if (!String(json.data[i].body_html).match(/img.*src=/))
のように文字列型にキャストして対処しました。The text was updated successfully, but these errors were encountered: