Hi Ben,
So, what I would usually advise here would be not to edit the core code of feedwordpress directly (such changes are easily lost or need to be done over again if you later install an upgrade; it’s easy to inadvertently make mistakes or do things with unexpected side effects; etc.).
The best way to do this is to add some code of your own to your functions.php file (or to a small add-on plugin module, if you prefer) and then add that code as an action on the feedwordpress_update_complete
event hook.
FeedWordPress triggers a number of filter and action events using the standard WordPress plugin API in the course of running an update process, feedwordpress_update_complete
being the hook that is triggered at the end of a scheduled update process. (It’s also the same hook that I typically use to trigger scheduled events in add-on modules for FWP that need to process recently imported posts or to clean up in some way after an update procedure.) Here’s an example of how you would do that:
https://fwpplugin.com/wiki/feedwordpress_update_complete/
Hope that answers your question! Let me know if the technique works for you.