From: Urban Wallasch Date: Tue, 13 Aug 2019 20:34:21 +0000 (+0200) Subject: * Fixed mistyped variable name in telemetry flags check. X-Git-Tag: v0.1.0~23 X-Git-Url: https://git.packet-gain.de/?a=commitdiff_plain;h=4232831a7e11c43bec880880571d6a9816d7a031;p=ets2_tele.git * Fixed mistyped variable name in telemetry flags check. --- diff --git a/dash.html b/dash.html index f3a5016..1d6e928 100644 --- a/dash.html +++ b/dash.html @@ -331,7 +331,7 @@ function update_cb() { if ( !(tele.tele_flags & TELE_FLAG_ALIVE) ) { if ( tnow() - last_active > 300 ) // 5 minutes NoSleep timeout disableNoSleep(); - if ( !last_tele || last_tele.tele_flags != tele.tele_tele_flags ) { + if ( !last_tele || last_tele.tele_flags != tele.tele_flags ) { pausebar.style.display = 'none'; errbar.style.display = 'block'; errbar.innerHTML = 'Game offline';