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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 159 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/cloud_py_api-main.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

js/cloud_py_api-main.js.LICENSE.txt

Lines changed: 0 additions & 63 deletions
This file was deleted.

js/cloud_py_api-main.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/Service/UtilsService.php

Lines changed: 3 additions & 3 deletions
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)