Abdelazeem777 / requests_inspector

MIT License
11 stars 18 forks source link

When Json Decode request items, it converts every type to String with quotes "" #17

Open Abdelazeem777 opened 1 year ago

Abdelazeem777 commented 1 year ago

For example

The request:

{
    "user": {
        "followers": 3,
        "isTeacher": true,
     }
}

After share, the output will be like this:

{
    "user": {
        "followers": "3",
        "isTeacher": "true",
     }
}

but it should be the same even after I decode it for share!