We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fd8eac7 + 4e96c3f commit b487fa9Copy full SHA for b487fa9
src/ExpoNotificationsService.php
@@ -119,9 +119,11 @@ public function receipts(Collection|array $tokenIds): Collection
119
->status($responseItem['status']);
120
121
if ($responseItem['status'] === ExpoResponseStatus::ERROR->value) {
122
+ $responseItemDetails = is_string($responseItem['details']) ? json_decode($responseItem['details']) : $responseItem['details'];
123
+
124
$data
125
->message($responseItem['message'])
- ->details($responseItem['details']);
126
+ ->details($responseItemDetails);
127
}
128
129
return $data;
0 commit comments