mirror of
https://github.com/element-hq/element-android
synced 2024-11-28 05:31:21 +03:00
fixed ktlint complaining and errors in italian translation file
This commit is contained in:
parent
97b4fd69b4
commit
c6b942cd31
1 changed files with 3 additions and 2 deletions
|
@ -46,7 +46,8 @@ class GuardService : Service() {
|
|||
if (running) {
|
||||
if (intent != null) {
|
||||
val lifeLine = intent.getBooleanExtra(EXTRA_LIFELINE, false)
|
||||
if (lifeLine) {//called from lifeLine?
|
||||
if (lifeLine) {
|
||||
// called from lifeLine?
|
||||
scheduleLifeLine()
|
||||
return START_STICKY
|
||||
}
|
||||
|
@ -88,7 +89,7 @@ class GuardService : Service() {
|
|||
if (sessionId.isNullOrEmpty()) {
|
||||
Timber.i("## Sync: timer still alive GuardService sessionId:nullOrEmpty")
|
||||
} else {
|
||||
Timber.i("## Sync: timer still alive GuardService sessionId:${sessionId}")
|
||||
Timber.i("## Sync: timer still alive GuardService sessionId:$sessionId")
|
||||
try {
|
||||
val syncIntent = Intent(applicationContext, VectorSyncService::class.java)
|
||||
syncIntent.putExtra(SyncService.EXTRA_SESSION_ID, sessionId)
|
||||
|
|
Loading…
Reference in a new issue