dev #1
Binary file not shown.
@@ -61,7 +61,7 @@ document.addEventListener("DOMContentLoaded", () => {
|
|||||||
fetch("{{ url_for('get_log') }}")
|
fetch("{{ url_for('get_log') }}")
|
||||||
.then(response => response.text())
|
.then(response => response.text())
|
||||||
.then(data => {
|
.then(data => {
|
||||||
const lines = data.split("\n").filter(line => !line.includes("ist erreichbar!"));
|
const lines = data.split("\n");
|
||||||
let lastSepIndex = -1;
|
let lastSepIndex = -1;
|
||||||
for (let i = lines.length - 1; i >= 0; i--) {
|
for (let i = lines.length - 1; i >= 0; i--) {
|
||||||
if (lines[i].startsWith("--------------------------------------------------------------------")) {
|
if (lines[i].startsWith("--------------------------------------------------------------------")) {
|
||||||
|
|||||||
Reference in New Issue
Block a user