fix: headers分割

This commit is contained in:
Alen 2024-09-13 16:11:15 +08:00
parent 8ad746397c
commit 70c596df93

View File

@ -73,7 +73,7 @@ export default class GoCQHTTPDownloadFile extends BaseAction<Payload, FileRespon
headers[headerItem] = '';
} else {
const key = headerItem.substring(0, spilt);
headers[key] = headerItem.substring(0, spilt + 1);
headers[key] = headerItem.substring(spilt + 1);
}
}
}