Skip to content

Commit

Permalink
Merge pull request #178 from mcrossley/master
Browse files Browse the repository at this point in the history
v3.25.2
  • Loading branch information
mcrossley authored Jun 1, 2023
2 parents d354353 + 18f449e commit e8015e7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CumulusMX/DavisWllStation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1636,7 +1636,7 @@ private void GetWlHistoricData(BackgroundWorker worker)
cumulus.LastUpdateTime = Utils.FromUnixTime(endTime);
return;
}
else if (responseBody.StartsWith("{\"sensors\":[{\"lsid\"")) // sanity check
else if (responseBody.StartsWith("{\"")) // basic sanity check
{
// get the sensor data
int idxOfSensorWithMostRecs = 0;
Expand Down Expand Up @@ -2975,7 +2975,7 @@ private void GetWlHistoricHealth()
return;
}

if (!responseBody.StartsWith("{\"sensors\":[{\"lsid\"")) // sanity check
if (!responseBody.StartsWith("{\"")) // basic sanity check
{
// No idea what we got, dump it to the log
cumulus.LogMessage("WLL Health: Invalid historic message received");
Expand Down
6 changes: 3 additions & 3 deletions CumulusMX/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Cumulus MX")]
[assembly: AssemblyDescription("Version 3.25.1 - Build 3244")]
[assembly: AssemblyDescription("Version 3.25.2 - Build 3245")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Cumulus MX")]
Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.25.1.3244")]
[assembly: AssemblyFileVersion("3.25.1.3244")]
[assembly: AssemblyVersion("3.25.2.3245")]
[assembly: AssemblyFileVersion("3.25.2.3245")]
7 changes: 7 additions & 0 deletions Updates.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
3.25.2 - b3245
——————————————
Fixed
- Davis WLL not doing historic catch-up or downloading stats from weatherlink.com



3.25.1 - b3244
——————————————
New
Expand Down

0 comments on commit e8015e7

Please sign in to comment.