Endless loading / error in user's notifications / tasks

That’s this line:

So that means it is trying to find a notification for a submission or submission file that doesn’t exist in the database. You’ll want to add an entry to your error log to identify the submission ID or submission file ID that is causing the problem:

// Add this just above line 157
if (is_null($submission)) {
    error_log($submissionId . '/' . $fileId);
}
1 Like