XF 2.2 Cannot delete an entity that has been partially updated

Robert9

Well-known member
Cannot delete an entity that has been partially updated

Maybe this comes from a situation like this?
Last post is updated, but not thread? Or vice versa?

What else it could be happen to have an entity partially updated, please?
 
Ok, have done some checks now.

There is a forum 123
I add threads by /api/threads/
with

Code:
'node_id' => $nodeId,
'title' => $title,
'message' => $message,
'tags' => $tags,
'prefix_id' => $prefixId,

After this i try to hard delete this threads and get the error.
Soft delete works.
 
Top Bottom