Merge pull request #375 from nextcloud/enh/374/list-newest-backups-first

list newest backups first
This commit is contained in:
Simon L 2022-03-15 16:46:42 +01:00 committed by GitHub
commit 31f86c1570
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,6 +102,9 @@ class ConfigurationManager
}
}
// Reverse the array to list newest backup first
$backupTimes = array_reverse($backupTimes);
return $backupTimes;
}