Skip to content

Commit b6e3109

Browse files
committed
Fix empty request body to wings when decompressing a file
1 parent 1a6669a commit b6e3109

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Repositories/Wings/DaemonFileRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ public function decompressFile(?string $root, string $file): ResponseInterface
256256
return $this->getHttpClient()->post(
257257
sprintf('/api/servers/%s/files/decompress', $this->server->uuid),
258258
[
259-
'json ' => [
259+
'json' => [
260260
'root' => $root ?? '/',
261261
'file' => $file,
262262
],

0 commit comments

Comments
 (0)