You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-26 17:03:12 +03:00
Use a short timeout for .well-known requests
Applies to verification of the homeserver, identity server, and fetching of the .well-known objects. Does not affect other HTTP requests. See https://github.com/vector-im/riot-web/issues/9290
This commit is contained in:
@@ -480,7 +480,7 @@ export class AutoDiscovery {
|
|||||||
const request = require("./matrix").getRequest();
|
const request = require("./matrix").getRequest();
|
||||||
if (!request) throw new Error("No request library available");
|
if (!request) throw new Error("No request library available");
|
||||||
request(
|
request(
|
||||||
{ method: "GET", uri: url },
|
{ method: "GET", uri: url, timeout: 5000 },
|
||||||
(err, response, body) => {
|
(err, response, body) => {
|
||||||
if (err || response.statusCode < 200 || response.statusCode >= 300) {
|
if (err || response.statusCode < 200 || response.statusCode >= 300) {
|
||||||
let action = "FAIL_PROMPT";
|
let action = "FAIL_PROMPT";
|
||||||
|
|||||||
Reference in New Issue
Block a user