Skip to content

Commit

Permalink
fix: should fix event data from being missing
Browse files Browse the repository at this point in the history
  • Loading branch information
USERSATOSHI committed Oct 21, 2024
1 parent 1559166 commit 9f8f483
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/core/if.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ const IF = async (d) => {
undefined,
true,
undefined,
Data
{
...Data,
...Data.data
}
)
)?.code === "true";

Expand Down Expand Up @@ -100,7 +103,10 @@ const IF = async (d) => {
undefined,
true,
undefined,
Data
{
...Data,
...Data.data
}
)
)?.code === "true";

Expand Down

0 comments on commit 9f8f483

Please sign in to comment.