1
0
Fork 0
mirror of synced 2024-07-16 11:45:47 +12:00

Reducing the likelihood of validity check clashing with filename.

This commit is contained in:
mike12345567 2024-05-15 13:37:46 +01:00
parent 16f6cad1ea
commit a1cbc931e2

View file

@ -146,7 +146,7 @@ class RestIntegration implements IntegrationBase {
// the API does not follow the requirements of https://www.ietf.org/rfc/rfc2183.txt
// all content-disposition headers should be format disposition-type; parameters
// but some APIs do not provide a type, causing the parse below to fail - add one to fix this
if (!contentDisposition.includes(";")) {
if (!contentDisposition.includes("; ")) {
contentDisposition = `attachment; ${contentDisposition}`
}
filename =