🐛 remove empty title folder

pull/548/head
微凉 2022-01-05 23:25:21 +08:00
parent 6ff2cdab98
commit 36b533cb16
1 changed files with 3 additions and 0 deletions

View File

@ -105,6 +105,9 @@ func (driver Teambition) GetFiles(parentId string, account *model.Account) ([]mo
}
page++
for _, collection := range collections {
if collection.Title == "" {
continue
}
files = append(files, model.File{
Id: collection.ID,
Name: collection.Title,