Skip to content

Commit

Permalink
Merge pull request #220 from Infomaniak/join-to-string
Browse files Browse the repository at this point in the history
Simplify `.joinToString()` usage
  • Loading branch information
KevinBoulongne authored Sep 9, 2024
2 parents 1358444 + a41f648 commit ab37acc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ fun Context.getFileNameAndSize(uri: Uri): Pair<String, Long>? {
fileName to fileSize
} else {
Sentry.captureMessage("$this has empty cursor") { scope ->
scope.setExtra("available columns", cursor.columnNames.joinToString { it })
scope.setExtra("available columns", cursor.columnNames.joinToString())
}
null
}
Expand Down

0 comments on commit ab37acc

Please sign in to comment.