Skip to content

Commit

Permalink
attempt to convert to utf8
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Apr 20, 2021
1 parent 5c1c2f6 commit 9e3748e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Controllers/FailedJobsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ protected function decode($job)
{
$job->payload = json_decode($job->payload);

$job->exception = mb_convert_encoding($job->exception, 'UTF-8', 'UTF-8');
$job->exception = mb_convert_encoding($job->exception, 'UTF-8');

$job->retried_by = collect(json_decode($job->retried_by))
->sortByDesc('retried_at')->values();
Expand Down

0 comments on commit 9e3748e

Please sign in to comment.