File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 4040 "license" : " Apache-2.0" ,
4141 "scripts" : {
4242 "format" : " biome format ./src" ,
43- "format:write " : " biome format --write ./src" ,
43+ "format:fix " : " biome format --write ./src" ,
4444 "lint" : " biome lint ./src" ,
4545 "lint:fix" : " biome lint --apply ./src" ,
4646 "clean" : " rimraf lib typedocs coverage gh-pages yarn-error.log db dist" ,
Original file line number Diff line number Diff line change @@ -96,11 +96,13 @@ export class Http1Server implements Printable {
9696 if ( secureContext && secureContextRefreshInterval ) {
9797 const timer = setInterval ( ( ) => {
9898 try {
99- secureContext ( ) . then ( ( context ) => {
100- server . setSecureContext ( context ) ;
101- } ) . catch ( ( error ) => {
102- console . error ( 'Failed to update secure context:' , error ) ;
103- } ) ;
99+ secureContext ( )
100+ . then ( ( context ) => {
101+ server . setSecureContext ( context ) ;
102+ } )
103+ . catch ( ( error ) => {
104+ console . error ( 'Failed to update secure context:' , error ) ;
105+ } ) ;
104106 } catch ( error ) {
105107 console . error ( 'Failed to update secure context:' , error ) ;
106108 }
You can’t perform that action at this time.
0 commit comments