Skip to content
This repository has been archived by the owner on Mar 12, 2020. It is now read-only.

Commit

Permalink
Merge pull request #575 from textileio/andrew/path-fix
Browse files Browse the repository at this point in the history
missed this
  • Loading branch information
andrewxhill authored Sep 28, 2018
2 parents 68ca31a + 05935d2 commit 4c6d4c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion App/Sagas/DeepLinkSagas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function * routeDeepLink (action: ActionType<typeof UIActions.routeDeepLi
if (!url) { return }
try {
// convert url scheme to standard url for parsing
const standardUrl = url.replace('textile://', 'https://textile.photos/')
const standardUrl = url.replace('textile://textile.photos/', 'https://textile.photos/')
const data = DeepLink.getData(standardUrl)
if (data) {
if (data.path === '/invites/device' && data.hash !== '') {
Expand Down

0 comments on commit 4c6d4c4

Please sign in to comment.