Skip to content

Commit

Permalink
Fixing notifier
Browse files Browse the repository at this point in the history
  • Loading branch information
depsimon committed Aug 21, 2018
1 parent 91c590f commit 130408a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AlertsNotifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function alert($message, $title = null, $type = null)
$message = new Alert(compact('message', 'title', 'type'));
}

$this->alerts->push($message + ['uid' => '_' . str_random(9)]);
$this->alerts->push($message);

return $this->flash();
}
Expand Down

0 comments on commit 130408a

Please sign in to comment.