Merge pull request #355 from AlanMartines/main

Fix: Corrects the generation of the hash variable name
This commit is contained in:
Davidson Gomes
2024-01-11 12:57:17 -03:00
committed by GitHub

View File

@@ -2875,7 +2875,8 @@ export class WAStartupService {
this.logger.verbose('Processing audio');
let tempAudioPath: string;
let outputAudio: string;
number = number.replace(/\D/g, "");
const hash = `${number}-${new Date().getTime()}`;
this.logger.verbose('Hash to audio name: ' + hash);