Default to visible if visible_in_picker missing
This commit is contained in:
parent
165c54fec2
commit
f49ea526fb
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue