Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore(android): Remove dead code, cold start bool is now always present
  • Loading branch information
krystofwoldrich authored Feb 5, 2024
commit 3268a4f794a9c9b1b9e75aab12baed8b8fbceee4
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,6 @@ class SentryFlutterPlugin : FlutterPlugin, MethodCallHandler, ActivityAware {
if (appStartTime == null) {
Log.w("Sentry", "App start won't be sent due to missing appStartTime")
result.success(null)
} else if (isColdStart == null) {
Log.w("Sentry", "App start won't be sent due to missing isColdStart")
result.success(null)
} else {
val appStartTimeMillis = DateUtils.nanosToMillis(appStartTime.nanoTimestamp().toDouble())
val item = mapOf<String, Any?>(
Expand Down