0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-27 22:22:42 +00:00

Merge pull request #1353 from G-Ambatte/fixRedditLink

Fix 'Share to Reddit' link for Google brews
This commit is contained in:
Trevor Buckner
2021-06-20 14:21:28 -04:00
committed by GitHub

View File

@@ -67,10 +67,12 @@ const MetadataEditor = createClass({
getRedditLink : function(){
const meta = this.props.metadata;
const shareLink = (meta.googleId || '') + meta.shareId;
const title = `${meta.title} [${meta.systems.join(' ')}]`;
const text = `Hey guys! I've been working on this homebrew. I'd love your feedback. Check it out.
**[Homebrewery Link](http://homebrewery.naturalcrit.com/share/${meta.shareId})**`;
**[Homebrewery Link](http://homebrewery.naturalcrit.com/share/${shareLink})**`;
return `https://www.reddit.com/r/UnearthedArcana/submit?title=${encodeURIComponent(title)}&text=${encodeURIComponent(text)}`;
},