Fixed #5. If the opds title is empty it should show 'Comics', else it will populate with the base url name

This commit is contained in:
FrederikBaerentsen 2022-07-13 19:15:35 +02:00
parent 40f521543a
commit 8ef613b155

View File

@ -51,11 +51,19 @@ def fromdir(root_url, url, content_base_path, content_relative_path):
path = os.path.join(content_base_path, content_relative_path) path = os.path.join(content_base_path, content_relative_path)
#print(path) if os.path.basename(content_relative_path) == "":
c = Catalog( c = Catalog(
title=os.path.basename(os.path.dirname(path)), root_url=root_url, url=url title="Comics",
) root_url=root_url,
#print(c.url) url=url
)
else:
c = Catalog(
title=os.path.basename(content_relative_path),
root_url=root_url,
url=url
)
#title=os.path.basename(os.path.dirname(path)), root_url=root_url, url=url
##########WORKING AREA########### ##########WORKING AREA###########
searchArr=[] searchArr=[]