diff --git a/backend/drive/drive.go b/backend/drive/drive.go index 0e97d9553..1f0afcdc4 100644 --- a/backend/drive/drive.go +++ b/backend/drive/drive.go @@ -1747,10 +1747,9 @@ func (f *Fs) createDir(ctx context.Context, pathID, leaf string, metadata fs.Met leaf = f.opt.Enc.FromStandardName(leaf) pathID = actualID(pathID) createInfo := &drive.File{ - Name: leaf, - Description: leaf, - MimeType: driveFolderType, - Parents: []string{pathID}, + Name: leaf, + MimeType: driveFolderType, + Parents: []string{pathID}, } var updateMetadata updateMetadataFn if len(metadata) > 0 { @@ -2430,7 +2429,6 @@ func (f *Fs) createFileInfo(ctx context.Context, remote string, modTime time.Tim // Define the metadata for the file we are going to create. createInfo := &drive.File{ Name: leaf, - Description: leaf, Parents: []string{directoryID}, ModifiedTime: modTime.Format(timeFormatOut), }