From e91334e4d7c0d32bdaa49f965c9c3eb3a1e03435 Mon Sep 17 00:00:00 2001 From: Matthias Pfefferle Date: Tue, 24 Oct 2023 12:45:46 +0200 Subject: [PATCH] fix following endpoint (#531) * fix following endpoint * version bump --- README.md | 6 +++++- activitypub.php | 2 +- includes/rest/class-following.php | 1 + readme.txt | 6 +++++- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 40c5398..8156292 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ **Tags:** OStatus, fediverse, activitypub, activitystream **Requires at least:** 4.7 **Tested up to:** 6.3 -**Stable tag:** 1.0.8 +**Stable tag:** 1.0.9 **Requires PHP:** 5.6 **License:** MIT **License URI:** http://opensource.org/licenses/MIT @@ -105,6 +105,10 @@ Where 'blog' is the path to the subdirectory at which your blog resides. Project maintained on GitHub at [automattic/wordpress-activitypub](https://github.com/automattic/wordpress-activitypub). +### 1.0.9 ### + +* Fixed: broken following endpoint + ### 1.0.8 ### * Fixed: blocking of HEAD requests diff --git a/activitypub.php b/activitypub.php index 62556b4..91786e5 100644 --- a/activitypub.php +++ b/activitypub.php @@ -3,7 +3,7 @@ * Plugin Name: ActivityPub * Plugin URI: https://github.com/pfefferle/wordpress-activitypub/ * Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format. - * Version: 1.0.8 + * Version: 1.0.9 * Author: Matthias Pfefferle & Automattic * Author URI: https://automattic.com/ * License: MIT diff --git a/includes/rest/class-following.php b/includes/rest/class-following.php index b591ab6..22c9d46 100644 --- a/includes/rest/class-following.php +++ b/includes/rest/class-following.php @@ -1,6 +1,7 @@