Skip to content

Commit

Permalink
chore: fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ryzizub committed Jul 25, 2024
1 parent 8bba23a commit fb2dc9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ class DownloadWorker(context: Context, params: WorkerParameters) :
contentType = httpConn.contentType
val contentLength: Long =
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) httpConn.contentLengthLong else httpConn.contentLength.toLong()
if (contentType != null){
if (contentType != null) {
log("Content-Type = $contentType")
}
log("Content-Length = $contentLength")
Expand Down

0 comments on commit fb2dc9a

Please sign in to comment.