We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 518945d commit b17b154Copy full SHA for b17b154
scrapegraphai/telemetry/telemetry.py
@@ -99,6 +99,9 @@ def _build_valid_telemetry_event(
99
"""Build and validate a TelemetryEvent. Returns None if validation fails."""
100
url: str | None = source[0] if isinstance(source, list) and source else None
101
102
+ if isinstance(content, list):
103
+ content = "\n".join(str(c) for c in content)
104
+
105
json_schema: str | None = None
106
if isinstance(schema, dict):
107
try:
0 commit comments