Merge branch 'develop' into multiple-reactions
This commit is contained in:
commit
0ddd4bc545
12 changed files with 35 additions and 17 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue