Default to visible if visible_in_picker missing

This commit is contained in:
iliana weller 2018-06-24 20:52:48 -07:00 committed by GitHub
parent 165c54fec2
commit f49ea526fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ def emojo(domain):
try: try:
url = urllib.parse.urlunsplit( url = urllib.parse.urlunsplit(
('https', domain, '/api/v1/custom_emojis', '', '')) ('https', domain, '/api/v1/custom_emojis', '', ''))
emojo = sorted(filter(lambda x: x['visible_in_picker'], emojo = sorted(filter(lambda x: x.get('visible_in_picker', True),
requests.get(url).json()), requests.get(url).json()),
key=operator.itemgetter('shortcode')) key=operator.itemgetter('shortcode'))
return render_template('emojo.html', domain=domain, emojo=emojo) return render_template('emojo.html', domain=domain, emojo=emojo)