Skip to content

Commit

Permalink
[reaper] Remove extra newline in reports (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
chromy authored Jul 31, 2024
1 parent 44f9f80 commit 590419d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,6 @@ fun longToBase64(hash: Long): String {
for (i in 0..7) {
buf[i] = ((hash shr i * 8) and 0xFFL).toByte()
}
val hashAsBase64 = Base64.encodeToString(buf, Base64.DEFAULT)
return hashAsBase64
val hashAsBase64 = Base64.encodeToString(buf, Base64.NO_WRAP)
return hashAsBase64.strip()
}

0 comments on commit 590419d

Please sign in to comment.