fix NPE
This commit is contained in:
parent
2a8f9bd7d3
commit
74ca36bb6e
2 changed files with 23 additions and 22 deletions
|
@ -63,13 +63,12 @@ class MaintenancePlugin @Inject constructor(
|
|||
}
|
||||
|
||||
//todo replace this with a call on startup of the application, specifically to remove
|
||||
// unnecessary garbage from the log exports
|
||||
// unnecessary garbage from the log exports
|
||||
fun deleteLogs() {
|
||||
val logDirectory = LoggerUtils.getLogDirectory()
|
||||
LoggerUtils.getLogDirectory()?.let { logDirectory ->
|
||||
val logDir = File(logDirectory)
|
||||
val files = logDir.listFiles { _: File?, name: String ->
|
||||
(name.startsWith("AndroidAPS")
|
||||
&& name.endsWith(".zip"))
|
||||
(name.startsWith("AndroidAPS") && name.endsWith(".zip"))
|
||||
}
|
||||
Arrays.sort(files) { f1: File, f2: File -> f1.name.compareTo(f2.name) }
|
||||
var delFiles = listOf(*files)
|
||||
|
@ -90,6 +89,7 @@ class MaintenancePlugin @Inject constructor(
|
|||
exportDir.delete()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* returns a list of log files. The number of returned logs is given via the amount
|
||||
|
|
|
@ -88,6 +88,7 @@ public class CareportalEvent implements DataPointWithLabelInterface, Interval {
|
|||
}
|
||||
|
||||
public CareportalEvent(NSMbg mbg) {
|
||||
this();
|
||||
date = mbg.date;
|
||||
eventType = MBG;
|
||||
json = mbg.json;
|
||||
|
|
Loading…
Reference in a new issue