fix keepalive setting

This commit is contained in:
2023-03-03 11:32:56 -05:00
parent 7d5da3bd78
commit fb18690c44
13 changed files with 21 additions and 13 deletions
+3 -1
View File
@@ -688,7 +688,9 @@ var BaseAPI = /*#__PURE__*/function () {
break; break;
} }
}, },
fetchKeepalive: function fetchKeepalive() {} fetchKeepalive: function fetchKeepalive() {
return true;
}
} }
}); });
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+3 -1
View File
@@ -688,7 +688,9 @@ var BaseAPI = /*#__PURE__*/function () {
break; break;
} }
}, },
fetchKeepalive: function fetchKeepalive() {} fetchKeepalive: function fetchKeepalive() {
return true;
}
} }
}); });
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+3 -1
View File
@@ -563,7 +563,9 @@ var BaseAPI = /*#__PURE__*/function () {
break; break;
} }
}, },
fetchKeepalive: function fetchKeepalive() {} fetchKeepalive: function fetchKeepalive() {
return true;
}
} }
}); });
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+3 -1
View File
@@ -563,7 +563,9 @@ var BaseAPI = /*#__PURE__*/function () {
break; break;
} }
}, },
fetchKeepalive: function fetchKeepalive() {} fetchKeepalive: function fetchKeepalive() {
return true;
}
} }
}); });
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -72,7 +72,7 @@ export default class BaseAPI {
} }
}, },
fetchKeepalive: function() { fetchKeepalive: function() {
return true;
}, },
}; };
cmi; cmi;