diff --git a/src/dissectLink.js b/src/dissectLink.js index 1a05bcb..69a6bcc 100644 --- a/src/dissectLink.js +++ b/src/dissectLink.js @@ -34,6 +34,10 @@ const hosts = [{ method: 'vidbleAlbum', label: 'vidble', pattern: new urlPattern('http(s)\\://(www.)vidble.com/album/:id') +}, { + method: 'gfycat', + label: 'gfycat', + pattern: new urlPattern('http(s)\\://(:server.)gfycat.com/:id(-size_restricted.gif)') }, { method: 'gfycat', label: 'gfycat', diff --git a/src/sources/getPosts.js b/src/sources/getPosts.js index eb52179..e257583 100644 --- a/src/sources/getPosts.js +++ b/src/sources/getPosts.js @@ -39,7 +39,7 @@ const getPostsWrap = (reddit, args) => { return {...accUserPosts, '[deleted]': {name: '[deleted]', deleted: true, posts: [post]}}; } - const user = await getUser(post.author.name); + const user = await getUser(post.author.name, reddit); return {...accUserPosts, [post.author.name]: {...user, posts: [post]}} }), userPosts);