mirror of
https://github.com/Ellpeck/WoodpeckerPlugins.git
synced 2024-11-21 18:13:30 +01:00
actually fixed it this time
This commit is contained in:
parent
e8d484828e
commit
89045614ac
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ async function upload() {
|
||||||
});
|
});
|
||||||
if (response.status != 404) {
|
if (response.status != 404) {
|
||||||
let data = JSON.parse(xml.toJson(response.data));
|
let data = JSON.parse(xml.toJson(response.data));
|
||||||
let dirs = data["d:multistatus"]["d:response"]?.slice(1) || [];
|
let dirs = data["d:multistatus"]["d:response"]?.slice?.(1) || [];
|
||||||
// sort directories by last modified
|
// sort directories by last modified
|
||||||
dirs.sort((a, b) => new Date(a["d:propstat"]["d:prop"]["d:getlastmodified"]) - new Date(b["d:propstat"]["d:prop"]["d:getlastmodified"]));
|
dirs.sort((a, b) => new Date(a["d:propstat"]["d:prop"]["d:getlastmodified"]) - new Date(b["d:propstat"]["d:prop"]["d:getlastmodified"]));
|
||||||
while (dirs.length >= parseInt(retentionAmount)) {
|
while (dirs.length >= parseInt(retentionAmount)) {
|
||||||
|
|
Loading…
Reference in a new issue