projects
/
ets2_tele.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8b7bd1
)
* Fixed mistyped variable name in telemetry flags check.
author
Urban Wallasch
<urban.wallasch@freenet.de>
Tue, 13 Aug 2019 20:34:21 +0000
(22:34 +0200)
committer
Urban Wallasch
<urban.wallasch@freenet.de>
Tue, 13 Aug 2019 20:34:21 +0000
(22:34 +0200)
dash.html
patch
|
blob
|
history
diff --git
a/dash.html
b/dash.html
index f3a50165655c3db2d57ee50005599ee47eebb7b6..1d6e928b841a754f8792ca7f730de0e56041cf46 100644
(file)
--- 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';