Skip to content

Commit

Permalink
Merge pull request #15923 from Expensify/jasper-fixDeployBlockerOldDo…
Browse files Browse the repository at this point in the history
…tLinks

Fix opening oldDot links when offline
  • Loading branch information
neil-marcellini authored Mar 13, 2023
2 parents bf10813 + a4a5629 commit 82331d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/actions/Link.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function openOldDotLink(url) {
}

if (isNetworkOffline) {
Linking.openURL(buildOldDotURL());
buildOldDotURL().then(oldDotURL => Linking.openURL(oldDotURL));
return;
}

Expand Down

0 comments on commit 82331d6

Please sign in to comment.