Merge branch 'develop' into multiple-reactions

This commit is contained in:
syuilo 2024-08-18 13:22:22 +09:00
commit 0ddd4bc545
12 changed files with 35 additions and 17 deletions

View file

@ -203,7 +203,9 @@ export class ApRequestService {
});
//#region リクエスト先がhtmlかつactivity+jsonへのalternate linkタグがあるとき
if (res.headers.get('Content-type')?.startsWith('text/html;') && _followAlternate === true) {
const contentType = res.headers.get('content-type');
if ((contentType ?? '').split(';')[0].trimEnd().toLowerCase() === 'text/html' && _followAlternate === true) {
const html = await res.text();
const window = new Window();
const document = window.document;