From 2eaf7a4cf27c6617ba4f2d6cd88c9ecbb063652f Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Wed, 14 Jun 2017 10:31:50 -0400 Subject: [PATCH] RN-143 Fixed links being case sensitive on Android (#627) --- app/components/markdown/markdown_link.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/markdown/markdown_link.js b/app/components/markdown/markdown_link.js index d20bba41e..4a67bc539 100644 --- a/app/components/markdown/markdown_link.js +++ b/app/components/markdown/markdown_link.js @@ -14,7 +14,7 @@ export default class MarkdownLink extends PureComponent { }; handlePress = () => { - const url = this.props.href; + const url = this.props.href.toLowerCase(); Linking.canOpenURL(url).then((supported) => { if (supported) {