mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-15 03:51:51 +00:00
sync (#445)
This commit is contained in:
commit
70719f3ba6
2 changed files with 7 additions and 2 deletions
|
@ -132,7 +132,12 @@ local statuslogo = ucic:get("openmptcprouter","settings","statuslogo") or "openm
|
||||||
}
|
}
|
||||||
if (mArray.openmptcprouter.core_temp)
|
if (mArray.openmptcprouter.core_temp)
|
||||||
{
|
{
|
||||||
content += '<%:Core temp:%>' + " " + (mArray.openmptcprouter.core_temp / 1000).toFixed(1) + " °";
|
if (mArray.openmptcprouter.core_temp > 100000)
|
||||||
|
{
|
||||||
|
content += '<%:Core temp:%>' + " " + (mArray.openmptcprouter.core_temp / 10000).toFixed(1) + " °";
|
||||||
|
} else {
|
||||||
|
content += '<%:Core temp:%>' + " " + (mArray.openmptcprouter.core_temp / 1000).toFixed(1) + " °";
|
||||||
|
}
|
||||||
content += "<br />";
|
content += "<br />";
|
||||||
}
|
}
|
||||||
if (mArray.openmptcprouter.uptime)
|
if (mArray.openmptcprouter.uptime)
|
||||||
|
|
|
@ -80,7 +80,7 @@ interface_macaddr_count() {
|
||||||
|
|
||||||
interface_max_metric() {
|
interface_max_metric() {
|
||||||
local config="$1"
|
local config="$1"
|
||||||
if [ "$1" != "omrvpn" ] && [ "$1" != "omr6in4" ]; then
|
if [ "$1" != "omrvpn" ] && [ "$1" != "omr6in4" ] && [ "$1" != "lan" ]; then
|
||||||
config_get metric "$config" metric
|
config_get metric "$config" metric
|
||||||
if [ "$metric" = "$count" ]; then
|
if [ "$metric" = "$count" ]; then
|
||||||
count=$((count+1))
|
count=$((count+1))
|
||||||
|
|
Loading…
Reference in a new issue