Remove Breezy weather provider url

This commit is contained in:
MM20 2025-04-28 21:21:14 +02:00
parent c3f32c7b8d
commit c217c346b2
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -59,7 +59,6 @@ class BreezyWeatherProvider(
windSpeed = data.windSpeed?.toDouble()?.div(3.6), windSpeed = data.windSpeed?.toDouble()?.div(3.6),
precipProbability = data.precipProbability, precipProbability = data.precipProbability,
windDirection = data.windDirection?.toDouble(), windDirection = data.windDirection?.toDouble(),
providerUrl = "de.mm20.launcher.plugin.breezyweather://-",
night = isNight( night = isNight(
data.timestamp.times(1000L), data.timestamp.times(1000L),
data.sunRise?.times(1000L), data.sunRise?.times(1000L),
@ -107,7 +106,6 @@ class BreezyWeatherProvider(
precipProbability = hourly.precipProbability, precipProbability = hourly.precipProbability,
windDirection = hourly.windDirection?.toDouble(), windDirection = hourly.windDirection?.toDouble(),
updateTime = lastUpdate, updateTime = lastUpdate,
providerUrl = "de.mm20.launcher.plugin.breezyweather://-",
night = isNight night = isNight
) )
} }