removing an extra space

This commit is contained in:
Tibor Kaputa 2023-07-10 16:00:54 +02:00 committed by GitHub
parent cd899849fe
commit d1e5262b34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ class NotesHelper(val context: Context) {
}
val result = when {
skipped == notes.size || imported == 0 -> ImportResult.IMPORT_NOTHING_NEW
skipped == notes.size || imported == 0 -> ImportResult.IMPORT_NOTHING_NEW
imported == notes.size -> ImportResult.IMPORT_OK
else -> ImportResult.IMPORT_PARTIAL
}