Fix for bug introduced in previous commit, where tic files where queued without the address prefix

This commit is contained in:
2023-09-05 20:41:41 +12:00
parent 3cd0deada0
commit 63a9c06fb0
5 changed files with 15 additions and 8 deletions

View File

@@ -63,6 +63,7 @@ class Receive extends Base
case 'nameas':
case 'size':
case 'name_size_time':
case 'stor_name':
return $this->receiving->{$key};
case 'pos':
@@ -215,7 +216,7 @@ class Receive extends Base
Log::info(sprintf('%s:- Processing TIC file [%s]',self::LOGKEY,$this->receiving->nameas));
// Queue the tic to be processed later, in case the referenced file hasnt been received yet
TicProcess::dispatch($this->receiving->nameas);
TicProcess::dispatch($this->receiving->rel_name);
break;