Skip to content

Commit b43d5f4

Browse files
committed
fix: Use GET parameter to pass providerId
1 parent 90d848f commit b43d5f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Service/ProvidersAI/TaskProcessingService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ public function trigger(): void {
303303
if ($exApp === null) {
304304
return;
305305
}
306-
$this->appAPIService->requestToExApp($exApp, '/trigger', params: ['providerId' => $this->provider['id']]);
306+
$this->appAPIService->requestToExApp($exApp, '/trigger?' . http_build_query(['providerId' => $this->provider['id']]));
307307
}
308308

309309
public function getExpectedRuntime(): int {

0 commit comments

Comments
 (0)