mirror of
				https://github.com/NodeBB/NodeBB.git
				synced 2025-10-30 18:46:01 +01:00 
			
		
		
		
	fix: improper handling of scheme-relative URLs in topic thumb logic
This commit is contained in:
		| @@ -23,6 +23,11 @@ module.exports = function (Topics) { | |||||||
| 	const pipeToFileAsync = util.promisify(pipeToFile); | 	const pipeToFileAsync = util.promisify(pipeToFile); | ||||||
|  |  | ||||||
| 	Topics.resizeAndUploadThumb = async function (data) { | 	Topics.resizeAndUploadThumb = async function (data) { | ||||||
|  | 		// Handle protocol-relative URLs | ||||||
|  | 		if (data.thumb.startsWith('//')) { | ||||||
|  | 			data.thumb = `${nconf.get('secure') ? 'https' : 'http'}:${data.thumb}`; | ||||||
|  | 		} | ||||||
|  |  | ||||||
| 		// Only continue if passed in thumbnail exists and is a URL. A system path means an upload is not necessary. | 		// Only continue if passed in thumbnail exists and is a URL. A system path means an upload is not necessary. | ||||||
| 		if (!data.thumb || !validator.isURL(data.thumb)) { | 		if (!data.thumb || !validator.isURL(data.thumb)) { | ||||||
| 			return; | 			return; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user