From f0acff420d87743d6c6deab6f0e41af740b90512 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Menrath?= Date: Sun, 24 Nov 2024 09:51:08 +0100 Subject: [PATCH 1/2] Fix: hook for ActivityPub transformer might also return null --- includes/class-setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/class-setup.php b/includes/class-setup.php index 2912002..7d1ddb5 100644 --- a/includes/class-setup.php +++ b/includes/class-setup.php @@ -252,7 +252,7 @@ class Setup { * * @return \Activitypub\Transformer\Base|null */ - public function register_activitypub_event_transformer( $transformer, $wp_object, $object_class ): \Activitypub\Transformer\Base { + public function register_activitypub_event_transformer( $transformer, $wp_object, $object_class ): ?\Activitypub\Transformer\Base { // If the current WordPress object is not a post (e.g., a WP_Comment), don't change the transformer. if ( 'WP_Post' !== $object_class ) { return $transformer; -- 2.39.5 From 45938e3daeb0fdacd3403ca7cbe50fd5dab2e14d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Menrath?= Date: Sun, 24 Nov 2024 09:52:37 +0100 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 6 ++++++ README.md | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1f6405..7a9a38f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +### Fixed + +* Fixed that transformer hook function might also return `null`. + ## [0.2.1] - 2024-11-16 ### Added diff --git a/README.md b/README.md index 023e5c2..2e12c7a 100644 --- a/README.md +++ b/README.md @@ -100,6 +100,12 @@ We're always interested in your feedback. Feel free to reach out to us via [E-Ma ## Changelog ## +## Unreleased + +### Fixed + +* Fixed that transformer hook function might also return `null`. + ### [0.2.1] 2024-11-16 ### * Initial release on https://wordpress.org/ -- 2.39.5