mirror of
https://github.com/ShaYmez/allmon2-last-heard.git
synced 2025-02-03 09:44:13 -05:00
Don't use intval for node # because some nodes are alphanumeric
This commit is contained in:
parent
e4c7683406
commit
8bd0491b3a
@ -39,7 +39,7 @@
|
||||
<td>{{ row.keyed }}</td>
|
||||
<td>{{ row.typeLabel }}</td>
|
||||
<td class="when">{{ row.dateTime.format('hh:mm:ss MM/DD/YY') }}</td>
|
||||
<td>{{ row.info }}</td>
|
||||
<td v-html="row.info"></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
@ -128,7 +128,7 @@ class Stream
|
||||
foreach ($obj as $node => $v) {
|
||||
foreach ($v->remote_nodes as $remoteNode) {
|
||||
$via = intval($node);
|
||||
$node = intval($remoteNode->node);
|
||||
$node = $remoteNode->node;
|
||||
if ($this->isIgnored($node)) continue;
|
||||
|
||||
// Capture previous keyed values
|
||||
@ -160,4 +160,4 @@ class Stream
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user