Fix invalid URL being generated

pull/1657/head
Kamran Ahmed 5 years ago
parent 4b8799bed7
commit f9579eea4b
  1. 4
      lib/url.js

@ -2,7 +2,9 @@ import queryString from 'query-string';
import siteConfig from 'storage/site'; import siteConfig from 'storage/site';
export const prefixHost = (url) => { export const prefixHost = (url) => {
return /^\//.test(url) ? `${siteConfig.url}${url}` : url; // if it starts with forward slash then prefix site URL
// @todo proper handling of full URLs and trailing slashes
return /^\//.test(url) ? `${siteConfig.url.web}${url}` : url;
}; };
export const getTwitterUrl = (username) => { export const getTwitterUrl = (username) => {

Loading…
Cancel
Save