MOBILE-4131 time: Return ISO string in toDatetimeFormat function
parent
57f10bff4a
commit
983ba9466a
|
@ -255,9 +255,7 @@ export class CoreTimeUtilsProvider {
|
|||
* @return Formatted time.
|
||||
*/
|
||||
toDatetimeFormat(timestamp?: number): string {
|
||||
timestamp = timestamp || Date.now();
|
||||
|
||||
return this.userDate(timestamp, 'YYYY-MM-DDTHH:mm:ss.SSS', false) + 'Z';
|
||||
return moment(timestamp || Date.now()).toISOString();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue