Skip to content

Commit

Permalink
Allow returning a null value
Browse files Browse the repository at this point in the history
  • Loading branch information
bencroker committed Oct 31, 2023
1 parent 05ad834 commit cabd214
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release Notes for Campaign

## 2.9.3 - 2023-10-31

### Fixed

- Fixed a bug in which an exception could be thrown on the sendouts screen ([#429](https://github.com/putyourlightson/craft-campaign/issues/429)).

## 2.9.2 - 2023-10-26

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "putyourlightson/craft-campaign",
"description": "Send and manage email campaigns, contacts and mailing lists.",
"version": "2.9.2",
"version": "2.9.3",
"type": "craft-plugin",
"homepage": "https://putyourlightson.com/plugins/campaign",
"license": "proprietary",
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/SendoutHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static function encodeEmojis(?string $value): string
*
* @since 2.9.2
*/
public static function decodeEmojis(?string $value): string
public static function decodeEmojis(?string $value): ?string
{
if (!Craft::$app->getDb()->getIsMysql()) {
return $value;
Expand Down

0 comments on commit cabd214

Please sign in to comment.