Skip to content
This repository has been archived by the owner on Jun 15, 2022. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/3.6.13' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonella Sgarlatta committed Jun 21, 2021
2 parents 650839d + b7243b0 commit e70f24b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "StandardNotes",
"version": "3.6.12",
"user-version": "3.6.12",
"version": "3.6.13",
"user-version": "3.6.13",
"private": true,
"license": "AGPL-3.0-or-later",
"scripts": {
Expand All @@ -26,7 +26,7 @@
"@react-navigation/native": "^5.9.3",
"@react-navigation/stack": "^5.14.3",
"@standardnotes/sncrypto-common": "1.2.9",
"@standardnotes/snjs": "2.7.3",
"@standardnotes/snjs": "2.7.4",
"js-base64": "^3.5.2",
"moment": "^2.29.1",
"react": "17.0.1",
Expand Down
7 changes: 6 additions & 1 deletion src/screens/Settings/Sections/OptionsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { SCREEN_MANAGE_SESSIONS, SCREEN_SETTINGS } from '@Screens/screens';
import { ButtonType } from '@standardnotes/snjs';
import moment from 'moment';
import React, { useCallback, useContext, useMemo, useState } from 'react';
import { Platform } from 'react-native';
import DocumentPicker from 'react-native-document-picker';
import RNFS from 'react-native-fs';

Expand Down Expand Up @@ -139,7 +140,11 @@ export const OptionsSection = ({ title, encryptionAvailable }: Props) => {
const selectedFile = await DocumentPicker.pick({
type: [DocumentPicker.types.plainText],
});
const data = await readImportFile(selectedFile.uri);
const selectedFileURI =
Platform.OS === 'ios'
? decodeURIComponent(selectedFile.uri)
: selectedFile.uri;
const data = await readImportFile(selectedFileURI);
if (!data) {
return;
}
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1630,10 +1630,10 @@
resolved "https://registry.yarnpkg.com/@standardnotes/sncrypto-common/-/sncrypto-common-1.2.9.tgz#5212a959e4ec563584e42480bfd39ef129c3cbdf"
integrity sha512-xJ5IUGOZztjSgNP/6XL+Ut5+q9UgSTv6xMtKkcQC5aJxCOkJy9u6RamPLdF00WQgwibxx2tu0e43bKUjTgzMig==

"@standardnotes/snjs@2.7.3":
version "2.7.3"
resolved "https://registry.yarnpkg.com/@standardnotes/snjs/-/snjs-2.7.3.tgz#3b8d4bbcb0d841e02726193c4540d1b11d772249"
integrity sha512-YzD9/lxUS4nn922gR03/UHL9shqsyqikx+4Ud9v4IqtGEwKpusny4ecKPtvdbot/nedqEKpMZzrqT7xeNiRKqQ==
"@standardnotes/snjs@2.7.4":
version "2.7.4"
resolved "https://registry.yarnpkg.com/@standardnotes/snjs/-/snjs-2.7.4.tgz#0da670ab2cb76918fb6e75d57e5c00dfe82da196"
integrity sha512-UUNcXEdjX63YU0yBezwVVlvJ5HTic8l/CLqgjWrbsVAfPPJ8WC8FmGcv3yBOc+d56qgp+Tg1LMySYaOs67JRCw==
dependencies:
"@standardnotes/auth" "^2.0.0"
"@standardnotes/sncrypto-common" "^1.2.9"
Expand Down

0 comments on commit e70f24b

Please sign in to comment.