Initialize deletions list when returning lists from RunJob()

This commit is contained in:
2025-12-10 00:20:36 -05:00
parent 01be63c587
commit 7e7fbd15b4
+1
View File
@@ -550,6 +550,7 @@ func RunJob(returnLists bool) ([3][]string, error) {
if err != nil {
return [3][]string{nil, nil, nil}, errors.New("unable to sync entries: " + err.Error())
}
lists[0] = []string{} // initialize deletions list
for _, deletion := range deletions {
if !deletion.IsAgeFile {
lists[0] = append(lists[0], deletion.VanityPath)