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:
@@ -691,7 +691,7 @@ final class Binkp extends BaseProtocol
|
||||
$this->node->ftn_other = $rem_aka;
|
||||
continue;
|
||||
|
||||
} else if (! $o->active) {
|
||||
} elseif (! $o->active) {
|
||||
Log::alert(sprintf('%s:/ AKA is not active [%s], ignoring',self::LOGKEY,$rem_aka));
|
||||
continue;
|
||||
|
||||
@@ -700,7 +700,7 @@ final class Binkp extends BaseProtocol
|
||||
}
|
||||
|
||||
} catch (\Exception $e) {
|
||||
Log::error(sprintf('%s:! AKA is INVALID [%s] (%s)',self::LOGKEY,$rem_aka,$e->getMessage()));
|
||||
Log::error(sprintf('%s:! AKA is INVALID [%s] (%d:%s-%s)',self::LOGKEY,$rem_aka,$e->getLine(),$e->getFile(),$e->getMessage()));
|
||||
|
||||
$this->msgs(self::BPM_ERR,sprintf('Bad address %s',$rem_aka));
|
||||
$this->rc = self::S_FAILURE;
|
||||
|
Reference in New Issue
Block a user