Skip to content

Commit 1ea3aa1

Browse files
committed
Fix bug with REST client that dropped activation options
1 parent ce9bfa7 commit 1ea3aa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/server-rest-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export class RestApiClient {
108108
async activateInterceptor(id: string, proxyPort: number, options?: any) {
109109
const response = await this.apiRequest<{
110110
result: { success: boolean, metadata: unknown }
111-
}>('POST', `/interceptors/${id}/activate/${proxyPort}`, options);
111+
}>('POST', `/interceptors/${id}/activate/${proxyPort}`, {}, options);
112112

113113
return response.result;
114114
}

0 commit comments

Comments
 (0)