Skip to content

Commit

Permalink
fix(feed): add missing slash for image url (#365)
Browse files Browse the repository at this point in the history
  • Loading branch information
ikatyang authored and JoelMarcey committed Jan 12, 2018
1 parent 7864e1b commit ba99660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/server/feed.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const siteConfig = require(CWD + '/siteConfig.js');

const blogFolder = path.resolve('../blog/');
const blogRootURL = siteConfig.url + '/blog';
const jestImage = siteConfig.url + siteConfig.headerIcon;
const jestImage = siteConfig.url + '/' + siteConfig.headerIcon;

/****************************************************************************/

Expand Down

0 comments on commit ba99660

Please sign in to comment.