File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
src/services/handler/assets Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @nasriya/hypercloud" ,
3
- "version" : " 1.2.6 " ,
3
+ "version" : " 1.2.7 " ,
4
4
"description" : " Nasriya HyperCloud is a lightweight Node.js HTTP2 framework." ,
5
5
"main" : " ./dist/cjs/hypercloud.js" ,
6
6
"module" : " ./dist/esm/hypercloud.js" ,
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ class RequestBody {
16
16
/**
17
17
* Get the value
18
18
* @param name
19
- * @returns {any }
20
19
*/
21
20
get ( name : string ) {
22
21
return this . #_data[ name ]
@@ -33,7 +32,7 @@ class RequestBody {
33
32
from ( value : any ) {
34
33
if ( typeof value === 'object' && Object . keys ( value ) . length > 0 ) {
35
34
for ( const prop in value ) {
36
- this . set ( prop , value [ prop ] )
35
+ this . set ( prop , decodeURIComponent ( value [ prop ] ) ) ;
37
36
}
38
37
}
39
38
You can’t perform that action at this time.
0 commit comments