Skip to content

Commit 395f577

Browse files
authored
Packages versions updates. Removed js folder (#100)
1 parent 6fbb3de commit 395f577

10 files changed

+624
-925
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ yarn-error.log*
1414

1515
.marginalia
1616

17+
/js/
1718
build/
1819
coverage/
1920
vendor

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require-dev": {
19-
"nextcloud/ocp": "^25.0",
19+
"nextcloud/ocp": "dev-master",
2020
"roave/security-advisories": "dev-master",
2121
"psalm/phar": "4.30.0",
2222
"phpunit/phpunit": "^9.5",

composer.lock

+159-58
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/cloud_py_api-main.js

-3
This file was deleted.

js/cloud_py_api-main.js.LICENSE.txt

-63
This file was deleted.

js/cloud_py_api-main.js.map

-1
This file was deleted.

lib/Service/UtilsService.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -434,11 +434,11 @@ public function downloadBinaryDirHashes(string $url): array {
434434
CURLOPT_RETURNTRANSFER => true,
435435
CURLOPT_FOLLOWLOCATION => true,
436436
]);
437-
$binaryHash = curl_exec($cURL);
437+
$binaryHashes = curl_exec($cURL);
438438
curl_close($cURL);
439439
return [
440-
'success' => $binaryHash != false,
441-
'binaryHash' => json_decode($binaryHash, true),
440+
'success' => $binaryHashes != false,
441+
'binaryHashes' => json_decode($binaryHashes, true),
442442
];
443443
}
444444

0 commit comments

Comments
 (0)