Office 365 ATP safe links breaks links - Adds extra %20 to a link and brakes it

Copper Contributor

The link proxy converts a good link to a broken link:

This is the safelinks.protection.outlook.com proxy link

https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fm.wishbox.co%2Fp%2520%2FApxouXXXXX...

 

The result of that link is: "https://m.wishbox.co/p%20/ApxouXXXXX"

 

the expected result should be:

"https://m.wishbox.co/p/ApxouXXXXX"

 

4 Replies
Hi,
you've posted your topic in Cortana community,
Office 365 community is here:
https://techcommunity.microsoft.com/t5/office-365/ct-p/Office365

@shaib25 did you managed to get an answer for your issue?

I have the same one...

@shaib25 

 

You can try to wrap your link with CSS i.e.

#permalink_section
{
white-space: pre-wrap; /* CSS3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}

 

From How do I wrap text with no whitespace inside a <td>?

Check working example here.