diff --git a/README.md b/README.md index dbce4ccc9..e90d93fb5 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Postwoman.io logo

-

+

API request builder - A free, fast, and beautiful alternative to Postman

@@ -23,7 +23,7 @@ --- -**Start here: _[Story behind Postwoman](https://dev.to/liyasthomas/i-created-postwoman-an-online-open-source-api-request-builder-41md), [Postwoman v1.0 - free, fast & beautiful alternative to Postman](https://dev.to/liyasthomas/postwoman-v1-0-a-free-fast-beautiful-alternative-to-postman-mn0)_** +**Start here: _[Story behind Postwoman](https://dev.to/liyasthomas/i-created-postwoman-an-online-open-source-api-request-builder-41md), [Postwoman v1.0](https://dev.to/liyasthomas/postwoman-v1-0-a-free-fast-beautiful-alternative-to-postman-mn0)_** **Chat here: _[Telegram](https://t.me/postwoman_app), [Discord](https://discord.gg/GAMWxmR)_** diff --git a/components/history.vue b/components/history.vue index b357c4d22..20c280179 100644 --- a/components/history.vue +++ b/components/history.vue @@ -54,7 +54,7 @@

  • - diff --git a/pages/index.vue b/pages/index.vue index eac293148..755d4463e 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -980,7 +980,7 @@ export default { ); const validHostname = new RegExp( protocol + - "(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]).)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9-]*[A-Za-z0-9])$" + "(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]).)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9-]*[A-Za-z0-9/])$" ); return validIP.test(this.url) || validHostname.test(this.url); },