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

View File

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