Blank is coded as %20

Hi, I perform a search to splunkcloud and the output of getreport replaces blanks by %20

This is an example
/servicesNS/nobody/soc/alerts/fired_alerts/ExtremeXP%20-%20TCP%20Port%20Scan

Expected output is:
/servicesNS/nobody/soc/alerts/fired_alerts/ExtremeXP - TCP Port Scan

Running n8n via cloud

Thanks!

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

Hey @jalbert , it is expected behaviour. URL is composed according to the standard, see RFC 3986. Unsupported characters have to be URL encoded. Space character is rightfully encoded as %20.

1 Like

OK. Thanks!!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.