mattrogowski
Well-known member
- Affected version
- 2.2.7
We have an RSS feed set up to post a thread that is erroring with
After tracking it down it's failing somewhere in the bbcode renderer.
It probably needs to either capture that the validation has failed and skip it or track how many times it's been attempted and skip it when it calls
This is happening on a board running 2.2.7, but I can't see any changes to the feed reader system since then that would handle this. If that's incorrect and it has been handled somewhere please let me know.
Error posting feed entry <id> for feed 11: Please enter a valid message.
every 30 minutes.After tracking it down it's failing somewhere in the bbcode renderer.
XF\Service\Message\Preparer::processMessage()
calls $this->bbCodeProcessor->render()
and returns nothing.It probably needs to either capture that the validation has failed and skip it or track how many times it's been attempted and skip it when it calls
if (!$creator->validate($errors))
. Currently the only way to stop it erroring is to manually add an entry to xf_feed_log
.This is happening on a board running 2.2.7, but I can't see any changes to the feed reader system since then that would handle this. If that's incorrect and it has been handled somewhere please let me know.