mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-26 15:36:23 +01:00
USBMS: Use filename_callback on the filename with template and tags.
This commit is contained in:
parent
c007eb5000
commit
081bb9b3ba
1 changed files with 2 additions and 2 deletions
|
|
@ -870,7 +870,7 @@ def create_upload_path(self, path, mdata, fname):
|
|||
if special_tag is None:
|
||||
from calibre.library.save_to_disk import get_components
|
||||
extra_components = get_components(template, mdata, fname)
|
||||
extra_components[-1] += ext
|
||||
extra_components[-1] = extra_components[-1] = sanitize(self.filename_callback(extra_components[-1]+ext, mdata)))
|
||||
else:
|
||||
tag = special_tag
|
||||
if tag.startswith(_('News')):
|
||||
|
|
@ -884,7 +884,7 @@ def create_upload_path(self, path, mdata, fname):
|
|||
c = sanitize(c)
|
||||
if not c: continue
|
||||
extra_components.append(c)
|
||||
extra_componets.append(fname)
|
||||
extra_componets.append(sanitize(self.filename_callback(fname, mdata)))
|
||||
|
||||
if not use_subdirs:
|
||||
extra_components = extra_components[:1]
|
||||
|
|
|
|||
Loading…
Reference in a new issue