diff --git a/app/Ninja/Tickets/Inbound/Attachment.php b/app/Ninja/Tickets/Inbound/Attachment.php index 25697890ac78..a533eb3ca1ad 100644 --- a/app/Ninja/Tickets/Inbound/Attachment.php +++ b/app/Ninja/Tickets/Inbound/Attachment.php @@ -52,7 +52,7 @@ Class Attachment extends InboundTicketFactory{ $directory = sys_get_temp_dir(); file_put_contents($directory . '/' . $this->Name, $this->_read()); - return File::get($directory.$this->Name); + return File::get($directory.'/'.$this->Name); }