Merge branch 'master' of https://github.com/syuilo/misskey
This commit is contained in:
		
						commit
						1836dd7312
					
				
					 2 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
					@ -45,7 +45,7 @@ export default Vue.extend({
 | 
				
			||||||
		} else if (url.hostname == 'youtu.be') {
 | 
							} else if (url.hostname == 'youtu.be') {
 | 
				
			||||||
			this.youtubeId = url.pathname;
 | 
								this.youtubeId = url.pathname;
 | 
				
			||||||
		} else {
 | 
							} else {
 | 
				
			||||||
			fetch('/url?url=' + this.url).then(res => {
 | 
								fetch('/url?url=' + encodeURIComponent(this.url)).then(res => {
 | 
				
			||||||
				res.json().then(info => {
 | 
									res.json().then(info => {
 | 
				
			||||||
					this.title = info.title;
 | 
										this.title = info.title;
 | 
				
			||||||
					this.description = info.description;
 | 
										this.description = info.description;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -14,8 +14,8 @@ module.exports = async (ctx: Koa.Context) => {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function wrap(url: string): string {
 | 
					function wrap(url: string): string {
 | 
				
			||||||
	return url != null
 | 
						return url != null
 | 
				
			||||||
		? url.startsWith('https://')
 | 
							? url.startsWith('https://') || url.startsWith('data:')
 | 
				
			||||||
			? url
 | 
								? url
 | 
				
			||||||
			: `https://images.weserv.nl/?url=${url.replace(/^http:\/\//, '')}`
 | 
								: `https://images.weserv.nl/?url=${encodeURIComponent(url.replace(/^http:\/\//, ''))}`
 | 
				
			||||||
		: null;
 | 
							: null;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue