Merge pull request #109 from FoamyGuy/text_content_fix

fix handling of single value text response
This commit is contained in:
Dan Halbert 2025-07-22 08:29:57 -04:00 committed by GitHub
commit bbae5e4191
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -698,7 +698,7 @@ class NetworkBase:
for regexp in regexp_path:
values.append(re.search(regexp, text).group(1))
else:
values = text
values.append(text)
return values
def process_json(self, json_data, json_path):