Zusammenfassung der Fixes:
Textfeld leeren — input.value = '' nach Gateway/RVS senden Duplikate verhindern — seenFinalRuns Set speichert runId für 60s, ignoriert wiederholte final Events mit gleicher runId
This commit is contained in:
@@ -397,17 +397,21 @@
|
||||
}
|
||||
|
||||
function testGateway() {
|
||||
const text = document.getElementById('chat-input').value.trim();
|
||||
const input = document.getElementById('chat-input');
|
||||
const text = input.value.trim();
|
||||
if (!text) return;
|
||||
addChat('sent', text, 'Gateway direkt');
|
||||
send({ action: 'test_gateway', text });
|
||||
input.value = '';
|
||||
}
|
||||
|
||||
function testRVS() {
|
||||
const text = document.getElementById('chat-input').value.trim();
|
||||
const input = document.getElementById('chat-input');
|
||||
const text = input.value.trim();
|
||||
if (!text) return;
|
||||
addChat('sent', text, 'via RVS');
|
||||
send({ action: 'test_rvs', text });
|
||||
input.value = '';
|
||||
}
|
||||
|
||||
function testProxyBtn() {
|
||||
|
||||
Reference in New Issue
Block a user