Skip to content

Commit

Permalink
Merge pull request #11931 from nextcloud/bugfix/noid/verify-ssl-certs
Browse files Browse the repository at this point in the history
fix(bots): Remove FIXMEs as we just accept the current state
  • Loading branch information
nickvergessen authored Mar 26, 2024
2 parents 27152f0 + aea033a commit 8f51c37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Service/BotService.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,13 @@ protected function sendAsyncRequests(array $bots, array $body): void {
'X-Nextcloud-Talk-Random' => $random,
'X-Nextcloud-Talk-Signature' => $hash,
'X-Nextcloud-Talk-Backend' => rtrim($this->serverConfig->getSystemValueString('overwrite.cli.url'), '/') . '/',
'OCS-APIRequest' => 'true', // FIXME optional?
'OCS-APIRequest' => 'true',
];

$data = [
'verify' => false,
'verify' => true,
'nextcloud' => [
'allow_local_address' => true, // FIXME don't enforce
'allow_local_address' => true,
],
'headers' => $headers,
'timeout' => 5,
Expand Down

0 comments on commit 8f51c37

Please sign in to comment.