set last_modified when pdf is uploaded

This commit is contained in:
Cervinko Cera 2016-04-06 12:55:20 +02:00
parent 4e0621479a
commit e4ffc9f2a0
1 changed files with 1 additions and 1 deletions

View File

@ -786,7 +786,7 @@ def upload():
else:
db_author = db.Authors(author, "", "")
db.session.add(db_author)
db_book = db.Books(title, "", "", datetime.datetime.now(), "", 1, datetime.datetime(101, 01,01), author_dir + "/" + title_dir, has_cover, db_author, [])
db_book = db.Books(title, "", "", datetime.datetime.now(), datetime.datetime(101, 01,01), 1, datetime.datetime.now(), author_dir + "/" + title_dir, has_cover, db_author, [])
db_book.authors.append(db_author)
db_data = db.Data(db_book, fileextension.upper()[1:], file_size, data_name)
db_book.data.append(db_data)