This commit is contained in:
Laura Hausmann 2022-11-21 02:06:43 +01:00
parent c3484f485d
commit dd18ffdbcd
Signed by: zotan
GPG key ID: D044E84C5BE01605

View file

@ -55,7 +55,9 @@ else {
<script>
function get(url) {
fetch(url).then(function(response) {
document.getElementById('log').innerText = ' Log playback (' + response.text() + ')';
return response.text();
}).then(function(text) {
document.getElementById('log').innerText = ' Log playback (' + text + ')';
});
}
</script>