Fix for when we have a duplicate FTN and we are logging that - Attempt to read property ftn on string

This commit is contained in:
2023-09-04 12:10:51 +12:00
parent a5784de9a8
commit 61582fa4da
2 changed files with 3 additions and 3 deletions

View File

@@ -144,7 +144,7 @@ class Node
case 'ftn_other':
// Ignore any duplicate FTNs that we get
if ($this->ftns_other->search($value) !== FALSE) {
Log::debug(sprintf('%s: - Ignoring Duplicate FTN [%s]',__METHOD__,$value->ftn));
Log::debug(sprintf('%s: - Ignoring Duplicate FTN [%s]',__METHOD__,$value));
break;
}