From bcdebe2036298c92ac187581cab8f64663bd68f5 Mon Sep 17 00:00:00 2001 From: itzmarkoni Date: Mon, 16 Jun 2025 19:44:44 -0400 Subject: [PATCH] updated --- Astrocore.Api/Controllers/TextToSpeechController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Astrocore.Api/Controllers/TextToSpeechController.cs b/Astrocore.Api/Controllers/TextToSpeechController.cs index 43e3d0b..382efbf 100644 --- a/Astrocore.Api/Controllers/TextToSpeechController.cs +++ b/Astrocore.Api/Controllers/TextToSpeechController.cs @@ -62,7 +62,7 @@ namespace Astrocore.Api.Controllers } var dfpwmBytes = await System.IO.File.ReadAllBytesAsync(dfpwmPath); - return File(dfpwmBytes, "application/octet-stream", "tts.dfpwm"); + return File(dfpwmBytes, "application/octet-stream", $"{fileNameGuid}.dfpwm"); } } }