Closed iferencz closed 6 months ago
Hello,
This is by design. Updated entries might have to be processed by extensions just like new entries.
On the edge
branch (soon released in 1.24.0), you can test $entry->isUpdated()
, otherwise see https://github.com/FreshRSS/FreshRSS/discussions/5602
Hello, This is by design. Updated entries might have to be processed by extensions just like new entries. On the
edge
branch (soon released in 1.24.0), you can test$entry->isUpdated()
, otherwise see FreshRSS/FreshRSS#5602
Thanks!
I use this hook to handle new entries, but sometimes the
handleBeforeInsert
function receives duplicate entries that already exist in the database. Has anyone else encountered this problem? I havereturn $entry;
at the end of the function.Thanks.