Skip to content

Commit

Permalink
fix(bots): Remove FIXMEs as we just accept the current state
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed Mar 26, 2024
1 parent 27152f0 commit aea033a
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 aea033a

Please sign in to comment.