Merge pull request #848 from tobiasd/20190424-curweather

API response celsius and metric both mean to use °C as unit for the temperature
This commit is contained in:
Michael Vogel 2019-04-24 09:39:08 +02:00 committed by GitHub
commit dd01cbd52d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
/**
* Name: Current Weather
* Description: Shows current weather conditions for user's location on their network page.
* Version: 1.1
* Version: 1.2
* Author: Tony Baldwin <http://friendica.tonybaldwin.info/u/t0ny>
* Author: Fabio Comuni <http://kirkgroup.com/u/fabrixxm>
* Author: Tobias Diekershoff <https://f.diekershoff.de/u/tobias>
@ -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 {