diff --git a/app/Classes/File/Receive.php b/app/Classes/File/Receive.php index 8dd2b8c..b2f192f 100644 --- a/app/Classes/File/Receive.php +++ b/app/Classes/File/Receive.php @@ -128,10 +128,10 @@ class Receive extends Base // If packet is greater than a size, lets queue it if ($this->queue || ($this->receiving->size > config('fido.queue_size',0))) { Log::info(sprintf('%s:- Packet [%s] will be sent to the queue for processing because its [%d] size, or queue forced',self::LOGKEY,$this->receiving->full_name,$this->receiving->size)); - PacketProcess::dispatch($this->receiving,$this->ao,$rcvd_time); + PacketProcess::dispatch($this->receiving,$this->ao->withoutRelations(),$rcvd_time); } else - PacketProcess::dispatchSync($this->receiving,$this->ao,$rcvd_time); + PacketProcess::dispatchSync($this->receiving,$this->ao->withoutRelations(),$rcvd_time); } catch (\Exception $e) { Log::error(sprintf('%s:! Got error dispatching packet [%s] (%d:%s-%s).',self::LOGKEY,$this->receiving->full_name,$e->getLine(),$e->getFile(),$e->getMessage()));