From 627100b46379dc4e0c7485a2426054753e974dda Mon Sep 17 00:00:00 2001 From: Matthias Pfefferle Date: Thu, 17 Dec 2020 21:16:09 +0100 Subject: [PATCH] fix follow/unfollow actions --- README.md | 6 +++++- activitypub.php | 2 +- includes/rest/class-inbox.php | 6 ++++++ languages/activitypub.pot | 4 ++-- readme.txt | 6 +++++- 5 files changed, 19 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 27b1e5a..2bbffc7 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ **Tags:** OStatus, fediverse, activitypub, activitystream **Requires at least:** 4.7 **Tested up to:** 5.6 -**Stable tag:** 0.11.0 +**Stable tag:** 0.11.1 **Requires PHP:** 5.6 **License:** MIT **License URI:** http://opensource.org/licenses/MIT @@ -88,6 +88,10 @@ Where 'blog' is the path to the subdirectory at which your blog resides. Project maintained on GitHub at [pfefferle/wordpress-activitypub](https://github.com/pfefferle/wordpress-activitypub). +### 0.11.1 ### + +* fix follow/unfollow actions + ### 0.11.0 ### * add support for customizable post-content diff --git a/activitypub.php b/activitypub.php index 04dc798..2b47fe5 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: 0.11.0 + * Version: 0.11.1 * Author: Matthias Pfefferle * Author URI: https://notiz.blog/ * License: MIT diff --git a/includes/rest/class-inbox.php b/includes/rest/class-inbox.php index 7f77e14..2a70bc0 100644 --- a/includes/rest/class-inbox.php +++ b/includes/rest/class-inbox.php @@ -152,6 +152,9 @@ class Inbox { 'required' => true, //'type' => 'enum', //'enum' => array( 'Create' ), + 'sanitize_callback' => function( $param, $request, $key ) { + return \strtolower( $param ); + }, ); $params['object'] = array( @@ -194,6 +197,9 @@ class Inbox { 'required' => true, //'type' => 'enum', //'enum' => array( 'Create' ), + 'sanitize_callback' => function( $param, $request, $key ) { + return \strtolower( $param ); + }, ); $params['object'] = array( diff --git a/languages/activitypub.pot b/languages/activitypub.pot index fd5cf9b..a5ae83e 100644 --- a/languages/activitypub.pot +++ b/languages/activitypub.pot @@ -2,10 +2,10 @@ # This file is distributed under the MIT. msgid "" msgstr "" -"Project-Id-Version: ActivityPub 0.11.0\n" +"Project-Id-Version: ActivityPub 0.11.1\n" "Report-Msgid-Bugs-To: " "https://wordpress.org/support/plugin/wordpress-activitypub\n" -"POT-Creation-Date: 2020-12-17 17:27:08+00:00\n" +"POT-Creation-Date: 2020-12-17 20:15:15+00:00\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/readme.txt b/readme.txt index 830e3df..ef790c5 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://notiz.blog/donate/ Tags: OStatus, fediverse, activitypub, activitystream Requires at least: 4.7 Tested up to: 5.6 -Stable tag: 0.11.0 +Stable tag: 0.11.1 Requires PHP: 5.6 License: MIT License URI: http://opensource.org/licenses/MIT @@ -88,6 +88,10 @@ Where 'blog' is the path to the subdirectory at which your blog resides. Project maintained on GitHub at [pfefferle/wordpress-activitypub](https://github.com/pfefferle/wordpress-activitypub). += 0.11.1 = + +* fix follow/unfollow actions + = 0.11.0 = * add support for customizable post-content