forked from friendica/friendica-addons
API response celsius and metric both mean to use °C as unit for the temperature
This commit is contained in:
parent
5f6ec2f83f
commit
0d0e4e3d06
|
@ -62,7 +62,7 @@ function getWeather($loc, $units = 'metric', $lang = 'en', $appid = '', $cacheti
|
|||
|
||||
unset($_SESSION['curweather_notice_shown']);
|
||||
|
||||
if ((string) $res->temperature['unit'] === 'metric') {
|
||||
if (in_array((string) $res->temperature['unit'], ['celsius', 'metric'])) {
|
||||
$tunit = '°C';
|
||||
$wunit = 'm/s';
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue