Skip to content

Commit a5c3dea

Browse files
authored
Merge pull request #136 from mohamed-hendawy/fix-export-data
Fix export with array values.
2 parents 3e48eca + ac30cbc commit a5c3dea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Transformers/DataArrayTransformer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ protected function decodeContent($data)
6565
$decoded = html_entity_decode(strip_tags($data), ENT_QUOTES, 'UTF-8');
6666

6767
return str_replace("\xc2\xa0", ' ', $decoded);
68-
} catch (\Exception $e) {
68+
} catch (\Throwable $e) {
6969
return $data;
7070
}
7171
}

0 commit comments

Comments
 (0)