mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 23:27:12 +01:00
Always record string.
This commit is contained in:
parent
9ec2701228
commit
1bdaf4aca2
2 changed files with 5 additions and 14 deletions
|
|
@ -61,8 +61,8 @@ async function getProducer(): Promise<Producer> {
|
|||
return producer;
|
||||
}
|
||||
|
||||
function getDateFormat(date): string {
|
||||
return dateFormat(date, 'UTC:yyyy-mm-dd HH:MM:ss');
|
||||
function getDateFormat(date, format?): string {
|
||||
return dateFormat(date, format ? format : 'UTC:yyyy-mm-dd HH:MM:ss');
|
||||
}
|
||||
|
||||
async function sendMessage(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue