Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
fix: remove obsolete match fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Gozala committed Dec 11, 2020
1 parent 9059fbd commit a2ddf44
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/ipfs-http-client/src/pin/remote/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,10 @@ class Remote {
* @param {Query & { all?: boolean }} query
* @returns {URLSearchParams}
*/
static encodeQuery ({ service, cid, name, match, status, all }) {
static encodeQuery ({ service, cid, name, status, all }) {
return toUrlSearchParams({
service,
name,
match,
status,
force: all ? true : undefined,
cid: cid && cid.map(String)
Expand Down

0 comments on commit a2ddf44

Please sign in to comment.