09.08.2022, 05:49
Go JSON parser will handle it correctly.
Escaping slashes can be removed like this but it's a pointless operation
Escaping slashes can be removed like this but it's a pointless operation
Code:
results = json.encode(results)
results = results:gsub('\\/', '/')
write(results)