RN-143 Fixed links being case sensitive on Android (#627)

This commit is contained in:
Harrison Healey 2017-06-14 10:31:50 -04:00 committed by enahum
parent 56b8f6e479
commit 2eaf7a4cf2

View file

@ -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) {