Skip to content

Commit 5eb49b5

Browse files
committed
use newly added if-case in main entry file for extraction calls
1 parent 57ae3a4 commit 5eb49b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/RemoteSite/Connection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ public function performExtractionRequest(array $requestData): array
5353
{
5454
$request = new Request(
5555
'POST',
56-
$this->baseUrl . '/extract.php'
56+
$this->baseUrl . '/index.php?jautoupdate=1'
5757
);
5858

59-
$data['password'] = $this->key;
59+
$requestData['password'] = $this->key;
6060

6161
// Get result
6262
$response = $this->performHttpRequest(

0 commit comments

Comments
 (0)