Discord vote notifications not working

hello my server dont sent message to Discord got this is console:

[DiscordMessages] Failed! Discord responded with code: 400. Plugin: Unknown Plugin {"embeds": ["0"]}

If you are using EasyVote then one of the fields in the embeded object is null or incorrect. Please ask the author of the plugin.
In response to ctv ():
If you are using EasyVote then one of the fields in the embeded object is null or incorrect. Please...
i make 2 message group on discord one for Report one for vote, i think now problem is cant use like that i saw now in plugin only have for report and must use some webhook. did im corect ?
I seem to not be able to receive the Discord notifications anymore from players voting. Its setup properly and the discord webhook is setup and right. 

Please help!!

If you have updated DiscordMessages.... you'll need to edit EasyVote.cs line 534... should be..

DiscordMessages?.Call("API_SendFancyMessage", _config.Discord[PluginSettings.WebhookURL], _config.Discord[PluginSettings.Title], json, bool.Parse(_config.Discord[PluginSettings.Alert]) ? "@here" : null);

Between Title and json there now needs to be a color.  So..

DiscordMessages?.Call("API_SendFancyMessage", _config.Discord[PluginSettings.WebhookURL], _config.Discord[PluginSettings.Title], 3329330, json, bool.Parse(_config.Discord[PluginSettings.Alert]) ? "@here" : null);