Skip to content

Commit 285ece6

Browse files
#77
1 parent 47d62cb commit 285ece6

File tree

4 files changed

+5
-78
lines changed

4 files changed

+5
-78
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
bld/
2222
[Bb]in/
2323
[Oo]bj/
24+
roperties/PublishProfiles/
2425

2526
# Visual Studio 2015 cache/options directory
2627
.vs/
@@ -68,6 +69,7 @@ artifacts/
6869
*.pidb
6970
*.svclog
7071
*.scc
72+
*.pubxml
7173

7274
# Chutzpah Test files
7375
_Chutzpah*

DbStructure/User/SensorHistory.cs

+3
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@ public static SensorHistory Merge(SensorHistory slice1, SensorHistory slice2)
106106
public void SerialiseData()
107107
{
108108
var dataSize = SensorDatapoint.BinarySize;
109+
if (Data == null)
110+
return;
111+
109112
var dataRaw = new byte[Data.Count*dataSize];
110113

111114
for (var i = 0; i < Data.Count; i++)

GhAPIAzure/Properties/PublishProfiles/greenhouseAPI - FTP.pubxml

-22
This file was deleted.

GhAPIAzure/Properties/PublishProfiles/greenhouseAPI - Web Deploy.pubxml

-56
This file was deleted.

0 commit comments

Comments
 (0)