Fix TicProcess, save() returns a bool, not the object
This commit is contained in:
parent
3555e5a91c
commit
89735a6ce2
@ -63,8 +63,7 @@ class TicProcess implements ShouldQueue
|
|||||||
$to = new Tic;
|
$to = new Tic;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$fo = $to->load($this->file)
|
$fo = $to->load($this->file);
|
||||||
->save();
|
|
||||||
|
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
Log::error(sprintf('%s:! Error loading TIC file [%s] (%s)',self::LOGKEY,$rel_name,$e->getMessage()));
|
Log::error(sprintf('%s:! Error loading TIC file [%s] (%s)',self::LOGKEY,$rel_name,$e->getMessage()));
|
||||||
@ -72,6 +71,8 @@ class TicProcess implements ShouldQueue
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$fo->save();
|
||||||
|
|
||||||
Log::info(sprintf('%s:= Processed [%s] storing [%s] as id [%d]',self::LOGKEY,$this->file,$to->file->name,$to->file->id));
|
Log::info(sprintf('%s:= Processed [%s] storing [%s] as id [%d]',self::LOGKEY,$this->file,$to->file->name,$to->file->id));
|
||||||
|
|
||||||
if (config('fido.packet_keep')) {
|
if (config('fido.packet_keep')) {
|
||||||
|
Loading…
Reference in New Issue
Block a user