Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix weathergov api precipitationLastHour #3125

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from

Conversation

JasonStieber
Copy link

Pull request fixes small big in weathergov api format mismatch #3124

@codecov-commenter
Copy link

Codecov Report

Merging #3125 (562efc0) into develop (e985e99) will increase coverage by 0.06%.
The diff coverage is 0.00%.

❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more.

@@             Coverage Diff             @@
##           develop    #3125      +/-   ##
===========================================
+ Coverage    25.55%   25.61%   +0.06%     
===========================================
  Files           53       53              
  Lines        11464    11464              
===========================================
+ Hits          2930     2937       +7     
+ Misses        8534     8527       -7     
Impacted Files Coverage Δ
modules/default/weather/providers/weathergov.js 0.00% <0.00%> (ø)

... and 1 file with indirect coverage changes

@@ -210,7 +210,7 @@ WeatherProvider.register("weathergov", {
currentWeather.minTemperature = currentWeatherData.minTemperatureLast24Hours.value;
currentWeather.maxTemperature = currentWeatherData.maxTemperatureLast24Hours.value;
currentWeather.humidity = Math.round(currentWeatherData.relativeHumidity.value);
currentWeather.precipitationAmount = currentWeatherData.precipitationLastHour.value;
currentWeather.precipitationAmount = currentWeatherData.precipitationLast3Hours.value;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe use the 3hours info as a fallback in case the precipitationLastHour is undefined?

@rejas rejas changed the title Develop Fix weathergov api precipitationLastHour Jun 18, 2023
"dependencies": {
"colors": "^1.4.0",
"console-stamp": "^3.1.1",
"digest-fetch": "^2.0.3",
"electron": "^25.2.0",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

electron should stay in the optional dependencies

@khassel
Copy link
Collaborator

khassel commented Sep 9, 2023

@JasonStieber can you make the requested changes?

@rejas
Copy link
Collaborator

rejas commented Jan 18, 2024

pinging @JasonStieber in the hope he picks this PR up again

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants