doc: Add and fix comment in get_favicon_or_logo()

This commit is contained in:
Solirs 2023-03-22 10:54:19 +01:00
parent 214386d2c8
commit 3802f281dd

View file

@ -301,6 +301,7 @@ def get_result_template(theme_name: str, template_name: str):
def get_favicon_or_logo(imgtype: str, request):
# This method returns a favicon or regular image depending on the imgtype parameter
# It is used to not repeat code for /favicon.ico and /logo
# Called by logo() and favicon()
theme = request.preferences.get_value("theme")
path = os.path.expanduser(settings.get("brand").get(imgtype))
relpath = os.path.join(app.root_path, path)
@ -317,7 +318,7 @@ def get_favicon_or_logo(imgtype: str, request):
# Otherwise we're good to go, send whatever is specified.
filename = os.path.basename(path)
path = os.path.dirname(path)
# Works wih both relative and absolute.
# Works with both relative and absolute.
return send_from_directory(
path,
filename,