Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
skeeks-semenov committed Mar 27, 2024
1 parent ead3470 commit efb7165
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/CmsSeoComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,9 @@ public function bootstrap($application)


if ($replaces) {
$response->data = strtr((string)$response->data, $replaces);
if (is_string($response->data)) {
$response->data = strtr((string)$response->data, $replaces);
}
}

});
Expand Down

0 comments on commit efb7165

Please sign in to comment.