From 097a8accca78b721144b255e4da1d6cb488ecd3a Mon Sep 17 00:00:00 2001 From: Jan-Tarek Butt Date: Mon, 23 Jul 2018 00:00:14 +0200 Subject: [PATCH] 0400-geo-location.lua.in: fix 0.0 GluonSrcDiet issue --- .../src/0400-geo-location.lua.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/gluon-config-mode-geo-location/src/0400-geo-location.lua.in b/package/gluon-config-mode-geo-location/src/0400-geo-location.lua.in index 25d3ffbc..25911246 100644 --- a/package/gluon-config-mode-geo-location/src/0400-geo-location.lua.in +++ b/package/gluon-config-mode-geo-location/src/0400-geo-location.lua.in @@ -14,18 +14,18 @@ return function(form, uci) if uci_longitude ~= nil then return uci_longitude end - return site.config_mode.geo_location.map.lon(0.0) + return site.config_mode.geo_location.map.lon(0) end local function show_lat() if uci_latitude ~= nil then return uci_latitude end - return site.config_mode.geo_location.map.lat(0.0) + return site.config_mode.geo_location.map.lat(0) end local function site_zoom() - return site.config_mode.geo_location.map.zoom(12) + return site.config_mode.geo_location.map.zoom(12) end local function show_olurl()