diff --git a/src/main/cogs/booru.py b/src/main/cogs/booru.py index 599a2c0..1c14b89 100644 --- a/src/main/cogs/booru.py +++ b/src/main/cogs/booru.py @@ -600,7 +600,7 @@ class MsG: posts_request = await u.fetch('https://{}.net/pool/show.json'.format(booru), params={'id': tempool['id'], 'page': page}, json=True) for post in posts_request['posts']: posts[post['id']] = {'artist': ', '.join( - post['artist']), 'file_url': post['file_url']} + post['artist']), 'file_url': post['file_url'], 'score': post['score']} page += 1 return pool, posts