Error: Cannot read property ‘replace’ of undefined…
-
Good day @jkohlbach,
I hope you well,
I just found another bug, which gives me alert to console log,Cannot read property ‘replace’ of undefined
at Object.success (ta.js?ver=3.3.7:191)So problem comes in loop
for ( x in response.data ) { (...) }last element return function()
to solve this problem we can add fallback after loop start
if ( typeof response.data[ x ] != 'object' ) return;this line of code solve 100% problem 🙂
check screenshot console log error
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Error: Cannot read property ‘replace’ of undefined…’ is closed to new replies.