I have been encountering a problem while trying to save patches multiple times. It seems that the operation isn't executing correctly. Here's what I've been doing:
I find a specific value that needs to be patched.
I identify the functions that are writing to this value.
I proceed to modify the function accordingly.
Finally, I attempt to save the patch.
However, the issue arises when I try to export the patch (Which also probably means it's not being applied). The exported JSON file doesn't appear to contain all the necessary elements. Specifically, I'm expecting to see the 'name', 'index', 'bytes', and 'url' fields in the exported file. But when I examine the file, all I see are the 'name' and 'url' fields.
Here's an example of what my exported JSON file looks like:
{
"name": "invis",
"url": "example.io/"
}
As you can see, the 'index' and 'bytes' fields, which I believe should be present, are missing from the exported JSON file.
Hello,
I have been encountering a problem while trying to save patches multiple times. It seems that the operation isn't executing correctly. Here's what I've been doing:
However, the issue arises when I try to export the patch (Which also probably means it's not being applied). The exported JSON file doesn't appear to contain all the necessary elements. Specifically, I'm expecting to see the 'name', 'index', 'bytes', and 'url' fields in the exported file. But when I examine the file, all I see are the 'name' and 'url' fields.
Here's an example of what my exported JSON file looks like:
As you can see, the 'index' and 'bytes' fields, which I believe should be present, are missing from the exported JSON file.
Thanks