-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'build/new_splash_screen' into tmp/20241231
- Loading branch information
Showing
3 changed files
with
32 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/src/v8runtime/JSIV8ValueConverter.cpp b/src/v8runtime/JSIV8ValueConverter.cpp | ||
index df5594068195f6c8fdfeab27800e5df629aee73e..158ac9264f09f7443f0f7ad12d851de7aac4f5c4 100644 | ||
--- a/src/v8runtime/JSIV8ValueConverter.cpp | ||
+++ b/src/v8runtime/JSIV8ValueConverter.cpp | ||
@@ -66,6 +66,9 @@ v8::Local<v8::Value> JSIV8ValueConverter::ToV8Value( | ||
} else if (value.isObject()) { | ||
return scopedHandle.Escape(ToV8Object( | ||
runtime, std::move(value.getObject(const_cast<V8Runtime &>(runtime))))); | ||
+ } else if (value.isSymbol()) { | ||
+ return scopedHandle.Escape(ToV8Symbol( | ||
+ runtime, std::move(value.getSymbol(const_cast<V8Runtime &>(runtime))))); | ||
} else { | ||
// What are you? | ||
std::abort(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,7 +75,8 @@ | |
"[email protected]": "patch:zeego@npm%3A1.10.0#./.yarn/patches/zeego-npm-1.10.0-1958a3ea63.patch", | ||
"@rabby-wallet/[email protected]": "patch:@rabby-wallet/eth-hd-keyring@npm%3A4.3.1#./.yarn/patches/@rabby-wallet-eth-hd-keyring-npm-4.3.1-a1d8bbe289.patch", | ||
"react-native-quick-crypto@^0.7.7": "patch:react-native-quick-crypto@npm%3A0.7.10#./.yarn/patches/react-native-quick-crypto-npm-0.7.10-e50ff7fecf.patch", | ||
"[email protected]": "patch:react-native-quick-crypto@npm%3A0.7.10#./.yarn/patches/react-native-quick-crypto-npm-0.7.10-e50ff7fecf.patch" | ||
"[email protected]": "patch:react-native-quick-crypto@npm%3A0.7.10#./.yarn/patches/react-native-quick-crypto-npm-0.7.10-e50ff7fecf.patch", | ||
"react-native-v8@^2.5.1": "patch:react-native-v8@npm%3A2.5.1#./.yarn/patches/react-native-v8-npm-2.5.1-215a8641f3.patch" | ||
}, | ||
"dependencies": { | ||
"@babel/runtime": "^7.20.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters