Bugfixes for renaming authors on gdrive
This commit is contained in:
parent
61bfeae936
commit
0bc15636f2
|
@ -1066,7 +1066,7 @@ def upload():
|
||||||
|
|
||||||
book_id = db_book.id
|
book_id = db_book.id
|
||||||
title = db_book.title
|
title = db_book.title
|
||||||
|
# ToDo this currently doesn't work -> integrate in update_dir_structure_gdrive
|
||||||
error = helper.update_dir_structure_file(book_id,
|
error = helper.update_dir_structure_file(book_id,
|
||||||
config.config_calibre_dir,
|
config.config_calibre_dir,
|
||||||
input_authors[0],
|
input_authors[0],
|
||||||
|
|
|
@ -464,8 +464,9 @@ def update_dir_structure_gdrive(book_id, first_author, renamed_author):
|
||||||
gFile = gd.getFileFromEbooksFolder(None, old_author_dir)
|
gFile = gd.getFileFromEbooksFolder(None, old_author_dir)
|
||||||
if gFile:
|
if gFile:
|
||||||
gd.moveGdriveFolderRemote(gFile, new_author_rename_dir)
|
gd.moveGdriveFolderRemote(gFile, new_author_rename_dir)
|
||||||
else:
|
# author is always co-author and has is never author, no folder is okay
|
||||||
error = _(u'File %(file)s not found on Google Drive', file=authordir) # file not found
|
#else:
|
||||||
|
# error = _(u'File %(file)s not found on Google Drive', file=authordir) # file not found
|
||||||
else:
|
else:
|
||||||
new_authordir = get_valid_filename(book.authors[0].name, chars=96)
|
new_authordir = get_valid_filename(book.authors[0].name, chars=96)
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user