Correct mimetype for Google Drive project exports (#2829)

Fixes #2797. Changes mimetype from zip to gzip
and adds .tar.gz extension to the name.
This commit is contained in:
Tom Morris 2020-07-03 08:24:25 -04:00 committed by GitHub
parent 139019f6e3
commit de2c2aa778
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -167,10 +167,10 @@ public class UploadCommand extends Command {
contentHints.setThumbnail(tn);
File fileMetadata = new File();
fileMetadata.setName(name)
fileMetadata.setName(name + ".tar.gz")
.setDescription(METADATA_DESCRIPTION)
.setContentHints(contentHints);
FileContent projectContent = new FileContent("application/zip", filePath);
FileContent projectContent = new FileContent("application/x-gzip", filePath);
File file = GoogleAPIExtension.getDriveService(token)
.files().create(fileMetadata, projectContent)
.setFields("id")