From 9224d9b9d3a12839fd9b7a71e13e2900c31a16ed Mon Sep 17 00:00:00 2001 From: Ian Salmons Date: Sun, 8 Jan 2017 20:42:40 +0000 Subject: [PATCH] Add missing fields to Embed.from_data() --- discord/embeds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/embeds.py b/discord/embeds.py index f73ac6ef7..c9ff36ed9 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -132,7 +132,7 @@ class Embed: except KeyError: pass - for attr in ('thumbnail', 'video', 'provider', 'author', 'fields'): + for attr in ('thumbnail', 'video', 'provider', 'author', 'fields', 'image', 'footer'): try: value = data[attr] except KeyError: