Skip to content

Commit 115fa79

Browse files
authored
fix: files with non-latin characters fails to open (#7054)
1 parent 7c59a90 commit 115fa79

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ PODS:
232232
- libwebp/sharpyuv (1.5.0)
233233
- libwebp/webp (1.5.0):
234234
- libwebp/sharpyuv
235-
- MobileCrypto (0.2.1):
235+
- MobileCrypto (0.2.2):
236236
- DoubleConversion
237237
- glog
238238
- hermes-engine
@@ -3082,7 +3082,7 @@ SPEC CHECKSUMS:
30823082
libavif: 84bbb62fb232c3018d6f1bab79beea87e35de7b7
30833083
libdav1d: 23581a4d8ec811ff171ed5e2e05cd27bad64c39f
30843084
libwebp: 02b23773aedb6ff1fd38cec7a77b81414c6842a8
3085-
MobileCrypto: a424494b2f45bec9dbe60e3f6d16a40aedefe7b7
3085+
MobileCrypto: badd466d89e6fb166575c8a5cb74606ee3eec0fe
30863086
nanopb: fad817b59e0457d11a5dfbde799381cd727c1275
30873087
PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47
30883088
PromisesSwift: 9d77319bbe72ebf6d872900551f7eeba9bce2851

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"@react-navigation/native": "^7.1.16",
4949
"@react-navigation/native-stack": "^7.3.23",
5050
"@rocket.chat/message-parser": "^0.31.31",
51-
"@rocket.chat/mobile-crypto": "RocketChat/rocket.chat-mobile-crypto",
51+
"@rocket.chat/mobile-crypto": "RocketChat/rocket.chat-mobile-crypto#513c4674346f1f89bad05b679081da20122b735f",
5252
"@rocket.chat/sdk": "RocketChat/Rocket.Chat.js.SDK#mobile",
5353
"@rocket.chat/ui-kit": "0.31.19",
5454
"axios": "~0.28.1",

tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/* Basic Options */
66
// "incremental": true, /* Enable incremental compilation */
7-
"target": "esnext" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', or 'ESNEXT'. */,
7+
"target": "esnext" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', or 'ESNEXT'. */,
88
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
99
// "lib": [], /* Specify library files to be included in the compilation. */
1010
"allowJs": true /* Allow javascript files to be compiled. */,
@@ -35,8 +35,8 @@
3535
// "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
3636

3737
/* Additional Checks */
38-
"noUnusedLocals": true, /* Report errors on unused locals. */
39-
"noUnusedParameters": true, /* Report errors on unused parameters. */
38+
"noUnusedLocals": true /* Report errors on unused locals. */,
39+
"noUnusedParameters": true /* Report errors on unused parameters. */,
4040
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
4141
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
4242
// "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4619,9 +4619,9 @@
46194619
dependencies:
46204620
tldts "~5.7.112"
46214621

4622-
"@rocket.chat/mobile-crypto@RocketChat/rocket.chat-mobile-crypto":
4623-
version "0.2.1"
4624-
resolved "https://codeload.github.com/RocketChat/rocket.chat-mobile-crypto/tar.gz/b75e261282bc0c25a3b8fde3230d1c1e01809e00"
4622+
"@rocket.chat/mobile-crypto@RocketChat/rocket.chat-mobile-crypto#513c4674346f1f89bad05b679081da20122b735f":
4623+
version "0.2.2"
4624+
resolved "https://codeload.github.com/RocketChat/rocket.chat-mobile-crypto/tar.gz/513c4674346f1f89bad05b679081da20122b735f"
46254625

46264626
"@rocket.chat/sdk@RocketChat/Rocket.Chat.js.SDK#mobile":
46274627
version "1.3.3-mobile"

0 commit comments

Comments
 (0)