adding a temporary workaround needed at inserting new events

This commit is contained in:
tibbi 2018-11-11 23:34:17 +01:00
parent 1ca2c2d195
commit 34778bb56a
1 changed files with 2 additions and 1 deletions

View File

@ -390,7 +390,8 @@ class DBHelper private constructor(val context: Context) : SQLiteOpenHelper(cont
context.updateWidgets()
ids.forEach {
// temporary workaround, will be rewritten in Room
ids.filterNot { it == "null" }.forEach {
context.cancelNotification(it.toLong())
}