ialbert / biostar-central

Biostar Q&A
http://www.biostars.org/
MIT License
581 stars 231 forks source link

Links to different Biostar instance have wrong preview #229

Closed martenson closed 10 years ago

martenson commented 10 years ago

If I link from post on biostar.org to https://biostar.usegalaxy.org/p/7288/ it will show the title of the post number 7288 but from biostars.org not from the other instance. Correct behaviour probably is to just show the link.

ialbert commented 10 years ago

what is happening is that the autolinker regex is ignoring the domain when matching local urls.

that's because localhost:8080 won't be recognized as a domain in the bleach html sanitizing library, so we disabled domain match when testing the autolinker, but never turned it back on

we'll fix it

ialbert commented 10 years ago

Fixed in dac75a3