File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 2
2
- Add support for reading/writing mfaInfo field in Auth Emulator (#3173 ).
3
3
- Work around CORS issues with jsdom in Auth Emulator and Emulator Hub (#3224 ).
4
4
- Fixes port conflict issues with ` functions:shell ` (#3210 ).
5
+ - Fixes issue where ` database:settings:set ` would cause an error with valid input (#3217 ).
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ export default new Command("database:settings:set <path> <value>")
43
43
) ;
44
44
const c = new Client ( { urlPrefix : u . origin , auth : true } ) ;
45
45
try {
46
- await c . put ( u . pathname , parsedValue ) ;
46
+ await c . put ( u . pathname , JSON . stringify ( parsedValue ) ) ;
47
47
} catch ( err ) {
48
48
throw new FirebaseError ( `Unexpected error fetching configs at ${ path } ` , {
49
49
exit : 2 ,
You can’t perform that action at this time.
0 commit comments