chore: lint

Signed-off-by: KaiserBh <kaiserbh@proton.me>
This commit is contained in:
KaiserBh 2024-01-10 19:41:34 +11:00
parent 7f77422a1f
commit 542ad22c93
No known key found for this signature in database
GPG Key ID: 14D73B142042BBA9

View File

@ -141,7 +141,9 @@ class GoogleDriveSyncService(context: Context, json: Json, syncPreferences: Sync
logcat(LogPriority.DEBUG) { "JSON deserialized successfully with kotlinx.serialization" } logcat(LogPriority.DEBUG) { "JSON deserialized successfully with kotlinx.serialization" }
syncData syncData
} catch (e: Exception) { } catch (e: Exception) {
logcat(LogPriority.ERROR) { "Failed to convert json to sync data with kotlinx.serialization: ${e.message}" } logcat(
LogPriority.ERROR,
) { "Failed to convert json to sync data with kotlinx.serialization: ${e.message}" }
throw Exception(e.message) throw Exception(e.message)
} }
} }