don't bother trying to make app name configurable actually

This commit is contained in:
xenofem 2022-04-27 00:44:35 -04:00
parent b84cb24ab9
commit c41430bcdc
2 changed files with 3 additions and 5 deletions

View file

@ -167,7 +167,7 @@ impl Uploader {
let writer = super::zip::ZipGenerator::new(files, Box::new(writer));
let size = writer.total_size();
self.writer = Some(Box::new(writer));
let download_filename = super::app_name()
let download_filename = super::APP_NAME.to_owned()
+ &now.format(FILENAME_DATE_FORMAT)?
+ ".zip";
let modtime = now;