Change MessagePath to not render the Origin in full
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 44s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m38s
Create Docker Image / Final Docker Image Manifest (push) Successful in 11s

This commit is contained in:
Deon George 2024-12-04 16:06:36 +11:00
parent 5dbef2d9d1
commit 6dde4cf910

View File

@ -50,7 +50,7 @@ trait MessagePath
$reply .= "No path information? This would be normal if this message came directly to the hub\r"; $reply .= "No path information? This would be normal if this message came directly to the hub\r";
$reply .= "+----------------------------------------------------------------[ ORIGIN ]-+\r"; $reply .= "+----------------------------------------------------------------[ ORIGIN ]-+\r";
$reply .= $mo->origin."\r"; $reply .= sprintf("%s (%s)\r",($mo->getRelationValue('origin')?->value) ?: '*NO ORIGIN*',$mo->fftn->ftn4d);
$reply .= "+-----------------------------------------------------------[ END MESSAGE ]-+\r"; $reply .= "+-----------------------------------------------------------[ END MESSAGE ]-+\r";