Fixed problem with import when using snipeit:import command (#6550)
This commit is contained in:
parent
75252bce05
commit
8420cb7ec1
1 changed files with 2 additions and 1 deletions
|
@ -41,7 +41,8 @@ trait Loggable
|
||||||
$settings = Setting::getSettings();
|
$settings = Setting::getSettings();
|
||||||
$log = new Actionlog;
|
$log = new Actionlog;
|
||||||
$log = $this->determineLogItemType($log);
|
$log = $this->determineLogItemType($log);
|
||||||
$log->user_id = Auth::user()->id;
|
if(Auth::user())
|
||||||
|
$log->user_id = Auth::user()->id;
|
||||||
|
|
||||||
if (!isset($target)) {
|
if (!isset($target)) {
|
||||||
throw new Exception('All checkout logs require a target');
|
throw new Exception('All checkout logs require a target');
|
||||||
|
|
Loading…
Add table
Reference in a new issue