From fb2dc9a37e4d99f686e4a4c45150a30d52bbc83f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20=C5=A0imon=C3=ADk?= Date: Thu, 25 Jul 2024 09:38:59 +0200 Subject: [PATCH] chore: fix lint issues --- .../main/kotlin/vn/hunghd/flutterdownloader/DownloadWorker.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/src/main/kotlin/vn/hunghd/flutterdownloader/DownloadWorker.kt b/android/src/main/kotlin/vn/hunghd/flutterdownloader/DownloadWorker.kt index f3d4f9d4..d5d68e3d 100644 --- a/android/src/main/kotlin/vn/hunghd/flutterdownloader/DownloadWorker.kt +++ b/android/src/main/kotlin/vn/hunghd/flutterdownloader/DownloadWorker.kt @@ -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")