fix: respect environment variable in url before adding protocol - resolved #2084
This commit is contained in:
parent
78693964d8
commit
ee6d173033
2 changed files with 5 additions and 1 deletions
|
|
@ -348,7 +348,10 @@ const newSendRequest = async () => {
|
|||
}
|
||||
|
||||
const ensureMethodInEndpoint = () => {
|
||||
if (!/^http[s]?:\/\//.test(newEndpoint.value)) {
|
||||
if (
|
||||
!/^http[s]?:\/\//.test(newEndpoint.value) &&
|
||||
!newEndpoint.value.startsWith("<<")
|
||||
) {
|
||||
const domain = newEndpoint.value.split(/[/:#?]+/)[0]
|
||||
if (domain === "localhost" || /([0-9]+\.)*[0-9]/.test(domain)) {
|
||||
setRESTEndpoint("http://" + newEndpoint.value)
|
||||
|
|
|
|||
1
packages/hoppscotch-app/vue2-shim.d.ts
vendored
1
packages/hoppscotch-app/vue2-shim.d.ts
vendored
|
|
@ -1,3 +1,4 @@
|
|||
/* eslint-disable import/export */
|
||||
// workaround for Volar to infer the ref type in <template>
|
||||
// https://github.com/johnsoncodehk/volar/issues/404
|
||||
declare module "@vue/runtime-dom" {
|
||||
|
|
|
|||
Loading…
Reference in a new issue