Skip to content
This repository was archived by the owner on Sep 15, 2025. It is now read-only.

Commit dbcc763

Browse files
committed
Update release notes
1 parent 961e775 commit dbcc763

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ _None._
4444

4545
_None._
4646

47+
### New Features
48+
49+
- Add `tag` parameter to `PostServiceRemoteOptions` [#634]
50+
4751
## 8.9.1
4852

4953
### Bug Fixes

WordPressKit/PostServiceRemoteREST.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ - (NSDictionary *)dictionaryWithRemoteOptions:(id <PostServiceRemoteOptions>)opt
419419
if (options.meta.length > 0) {
420420
[remoteParams setObject:options.meta forKey:RemoteOptionKeyMeta];
421421
}
422-
if (options.tag.length > 0) {
422+
if ([options respondsToSelector:@selector(tag)] && options.tag.length > 0) {
423423
[remoteParams setObject:options.tag forKey:RemoteOptionKeyTag];
424424
}
425425

0 commit comments

Comments
 (0)