File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,7 @@ export function dateToString<ReturnT = string | Array<any> | object>(record: Ret
2222 return typedRecord . toHexString ( ) as ReturnT ;
2323 }
2424
25- const transformToString = isFunction ( transformFn ) ? transformFn : ( date : DateTime ) => date . toISO ( ) ;
26-
25+ const transformToString = isFunction ( transformFn ) ? transformFn : ( date : DateTime ) => date . toUTC ( ) . toISO ( ) ;
2726 return reduce (
2827 typedRecord ,
2928 ( acc , value , key ) => {
Original file line number Diff line number Diff line change @@ -12,7 +12,9 @@ const app = async () => {
1212 try {
1313 ShutdownManager . initialize ( ) ;
1414
15+ logger . info ( 'BUILD:: 00001' ) ;
1516 await loadMetaObjects ( ) ;
17+
1618 if ( / t r u e | 1 | e n a b l e d / i. test ( process . env . DISABLE_SENDMAIL ?? '' ) === true ) {
1719 logger . warn ( '[sendmail] Sendmail is disabled' ) ;
1820 } else {
You can’t perform that action at this time.
0 commit comments