From f14bcecbb8829cbd6277cc2eb81ff82b2a33dea9 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Wed, 17 Jul 2019 21:54:51 +0200 Subject: [PATCH] port 8080 --- commands/fun/tts/dectalk.js | 2 +- commands/fun/tts/dectalkvc.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/fun/tts/dectalk.js b/commands/fun/tts/dectalk.js index 08274748..4ceb50c2 100644 --- a/commands/fun/tts/dectalk.js +++ b/commands/fun/tts/dectalk.js @@ -33,7 +33,7 @@ class dectalkCommand extends Command { return axios.request({ responseType: 'arraybuffer', - url: `http://localhost/api/gen.wav?dectalk=${args.decMessage}`, + url: `http://localhost:8080/api/gen.wav?dectalk=${args.decMessage}`, method: 'get', headers: { 'Content-Type': 'audio/wav', diff --git a/commands/fun/tts/dectalkvc.js b/commands/fun/tts/dectalkvc.js index 05b26bec..0baaeebb 100644 --- a/commands/fun/tts/dectalkvc.js +++ b/commands/fun/tts/dectalkvc.js @@ -33,7 +33,7 @@ class dectalkvcCommand extends Command { return axios.request({ responseType: 'arraybuffer', - url: `http://localhost/api/gen.wav?dectalk=${args.decMessage}`, + url: `http://localhost:8080/api/gen.wav?dectalk=${args.decMessage}`, method: 'get', headers: { 'Content-Type': 'audio/wav',