From 430ada7f84f30b911412d2495f5d48e42ff111e1 Mon Sep 17 00:00:00 2001 From: Abhinav2812 Date: Wed, 16 May 2018 17:54:37 +0530 Subject: [PATCH] Resolve FBChatException Resolve the error `fbchat.models.FBchatException: Could not get ThreadColor from color: FF0084FF` when threadcolor is set to default (MESSENGER_BLUE) --- fbchat/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fbchat/models.py b/fbchat/models.py index 947d943..a380599 100644 --- a/fbchat/models.py +++ b/fbchat/models.py @@ -469,7 +469,7 @@ class EmojiSize(Enum): class ThreadColor(Enum): """Used to specify a thread colors""" - MESSENGER_BLUE = '' + MESSENGER_BLUE = '#0084ff' VIKING = '#44bec7' GOLDEN_POPPY = '#ffc300' RADICAL_RED = '#fa3c4c'