Skip to content
Snippets Groups Projects
Commit 50f2e9e3 authored by Volodymyr Dovhaliuk's avatar Volodymyr Dovhaliuk Committed by Christian Adamski
Browse files

Resolve #3424862 "Type error cannot read properties of undefined (reading 'length')"

parent 0aadd25d
No related branches found
No related tags found
1 merge request!38Resolve #3424862 "Type error cannot read properties of undefined (reading 'length')"
Pipeline #157036 passed with warnings
......@@ -83,7 +83,7 @@
.find(".location-content")
.html();
if (content.length < 1) {
if (content !== undefined && content.length < 1) {
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment