mirror of
				https://github.com/cinnyapp/cinny.git
				synced 2025-11-04 14:30:29 +03:00 
			
		
		
		
	fix mention url is encoded wrong (#1936)
This commit is contained in:
		
							parent
							
								
									388f606ad2
								
							
						
					
					
						commit
						4dfce32730
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -62,7 +62,7 @@ const elementToCustomHtml = (node: CustomElement, children: string): string => {
 | 
			
		|||
      }
 | 
			
		||||
 | 
			
		||||
      const matrixTo = `https://matrix.to/#/${fragment}`;
 | 
			
		||||
      return `<a href="${encodeURIComponent(matrixTo)}">${sanitizeText(node.name)}</a>`;
 | 
			
		||||
      return `<a href="${encodeURI(matrixTo)}">${sanitizeText(node.name)}</a>`;
 | 
			
		||||
    }
 | 
			
		||||
    case BlockType.Emoticon:
 | 
			
		||||
      return node.key.startsWith('mxc://')
 | 
			
		||||
| 
						 | 
				
			
			@ -71,7 +71,7 @@ const elementToCustomHtml = (node: CustomElement, children: string): string => {
 | 
			
		|||
          )}" title="${sanitizeText(node.shortcode)}" height="32" />`
 | 
			
		||||
        : sanitizeText(node.key);
 | 
			
		||||
    case BlockType.Link:
 | 
			
		||||
      return `<a href="${encodeURIComponent(node.href)}">${node.children}</a>`;
 | 
			
		||||
      return `<a href="${encodeURI(node.href)}">${node.children}</a>`;
 | 
			
		||||
    case BlockType.Command:
 | 
			
		||||
      return `/${sanitizeText(node.command)}`;
 | 
			
		||||
    default:
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue