fix: use absolute URL for logo in email if path relative (#2628)
This commit is contained in:
parent
0f948582a6
commit
d04e33eb6b
@ -56,7 +56,7 @@ module.exports = {
|
||||
subject: `${opts.subject} - ${WIKI.config.title}`,
|
||||
text: opts.text,
|
||||
html: _.get(this.templates, opts.template)({
|
||||
logo: WIKI.config.logoUrl,
|
||||
logo: (WIKI.config.logoUrl.startsWith('http') ? '' : WIKI.config.host) + WIKI.config.logoUrl,
|
||||
siteTitle: WIKI.config.title,
|
||||
copyright: WIKI.config.company.length > 0 ? WIKI.config.company : 'Powered by Wiki.js',
|
||||
...opts.data
|
||||
|
Loading…
Reference in New Issue
Block a user