RN-143 Fixed links being case sensitive on Android (#627)
This commit is contained in:
parent
56b8f6e479
commit
2eaf7a4cf2
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue