Skip to content
Snippets Groups Projects

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

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -83,7 +83,7 @@
.find(".location-content")
.html();
if (content.length < 1) {
if (content !== undefined && content.length < 1) {
return;
}
Loading