fix: use absolute URL for logo in email if path relative (#2628)
This commit is contained in:
		| @@ -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 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user