File tree 2 files changed +13
-13
lines changed
src/IotBbq.App/IotBbq.JsApp/src/app
2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -13,17 +13,17 @@ export interface IBbqItem {
13
13
}
14
14
15
15
export class BbqItem implements IBbqItem {
16
- public id : string ;
17
- public eventId : string ;
18
- public name : string ;
19
- public itemType : string ;
20
- public currentPhase : string ;
21
- public weight : number ;
22
- public targetTemperature : number ;
23
- public temperature : number ;
24
- public cookStartTime : Date ;
25
- public probeNumber : number ;
26
- public lastLogUploadTime : Date ;
16
+ public id : string = null ;
17
+ public eventId : string = null ;
18
+ public name : string = null ;
19
+ public itemType : string = null ;
20
+ public currentPhase : string = null ;
21
+ public weight = 0 ;
22
+ public targetTemperature = 0 ;
23
+ public temperature = 0 ;
24
+ public cookStartTime : Date = null ;
25
+ public probeNumber : number = null ;
26
+ public lastLogUploadTime : Date = null ;
27
27
28
28
public load ( other : IBbqItem ) {
29
29
this . id = other . id ;
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ export class AzureUploadService {
78
78
} ,
79
79
event . lastSmokerUploadTime ? event . lastSmokerUploadTime : Utility . MinDate ,
80
80
Utility . MaxDate ,
81
- true ,
81
+ false ,
82
82
false ,
83
83
this . maxLogsPerUpload ) ;
84
84
@@ -125,7 +125,7 @@ export class AzureUploadService {
125
125
item . id ,
126
126
item . lastLogUploadTime ? item . lastLogUploadTime : Utility . MinDate ,
127
127
Utility . MaxDate ,
128
- true ,
128
+ false ,
129
129
false ,
130
130
this . maxLogsPerUpload ) ;
131
131
You can’t perform that action at this time.
0 commit comments