Closed FroggieFrog closed 1 year ago
My DSM 6 and my DSM 7 machines always returned a 502 BadGateway when I tried to check if a file is present.
502 BadGateway
The issue is a not correct formatted parameter pattern. The doc says:
pattern
You can use "," to separate multiple glob patterns.
But the lib always encoded the pattern as ["file","secondFile"] or ["file"] instead of the correct file,secondFile or file.
["file","secondFile"]
["file"]
file,secondFile
file
Thanks for fixing this.
My DSM 6 and my DSM 7 machines always returned a
502 BadGateway
when I tried to check if a file is present.The issue is a not correct formatted parameter
pattern
. The doc says:But the lib always encoded the pattern as
["file","secondFile"]
or["file"]
instead of the correctfile,secondFile
orfile
.