Closed ctstone closed 2 years ago
Currently FOTT submits Analyze Layout requests to the service as:
{ "url": "https://account.blob.core.windows.net/container/folder%2Ffile.pdf" }
This is due to JS Azure Storage SDK using encodeURIComponent instead of encodeURI for the blob name.
encodeURIComponent
encodeURI
This change ensures that Asset paths use encodeURI for the blob name:
{ "url": "https://account.blob.core.windows.net/container/folder/file.pdf" }
Currently FOTT submits Analyze Layout requests to the service as:
This is due to JS Azure Storage SDK using
encodeURIComponent
instead ofencodeURI
for the blob name.This change ensures that Asset paths use
encodeURI
for the blob name: