mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 15:34:13 +00:00 
			
		
		
		
	Optimize url-preview image (#4216)
This commit is contained in:
		
							parent
							
								
									f5b928a537
								
							
						
					
					
						commit
						62d17c9266
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -33,8 +33,8 @@ module.exports = async (ctx: Koa.BaseContext) => {
 | 
			
		|||
 | 
			
		||||
function wrap(url: string): string {
 | 
			
		||||
	return url != null
 | 
			
		||||
		? url.startsWith('https://') || url.startsWith('data:')
 | 
			
		||||
			? url
 | 
			
		||||
			: `https://images.weserv.nl/?url=${encodeURIComponent(url.replace(/^http:\/\//, ''))}`
 | 
			
		||||
		? url.match(/^https?:\/\//)
 | 
			
		||||
			? `https://images.weserv.nl/?url=${encodeURIComponent(url.replace(/^http:\/\//, '').replace(/^https:\/\//, 'ssl:'))}&w=200&h=200`
 | 
			
		||||
			: url
 | 
			
		||||
		: null;
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue