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

Commit abd91ce

Browse files
committed
Remove redundant site_id parameter
1 parent 0a98d41 commit abd91ce

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

WordPressKit/BlazeServiceRemote.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ open class BlazeServiceRemote: ServiceRemoteWordPressComREST {
4545
let endpoint = "sites/\(siteId)/wordads/dsp/api/v1/search/campaigns/site/\(siteId)"
4646
let path = self.path(forEndpoint: endpoint, withVersion: ._2_0)
4747
wordPressComRestApi.GET(path, parameters: [
48-
"page": "\(page)" as AnyObject,
49-
"site_id": "\(siteId)" as AnyObject
48+
"page": "\(page)" as AnyObject
5049
], success: { response, _ in
5150
do {
5251
let data = try JSONSerialization.data(withJSONObject: response)

0 commit comments

Comments
 (0)