feat: reset to our decryption failure tracking

This commit is contained in:
JanNiklas Grabowski
2024-08-19 16:16:06 +02:00
parent c652fb9089
commit c3155b9f2b
2 changed files with 2 additions and 3 deletions
@@ -66,13 +66,12 @@ import AnalyticsEvents
/// As for now the ios App only reports UTDs visible to user (error are reported from EventFormatter
var wasVisibleToUser: Bool = true
init(failedEventId: String, reason: DecryptionFailureReason, context: String, errorCode: NSInteger, deviceCount: NSInteger, unspecifiedErrorMessage: String?, ts: TimeInterval) {
init(failedEventId: String, reason: DecryptionFailureReason, context: String, errorCode: NSInteger, deviceCount: NSInteger, unspecifiedErrorMessage: String?) {
self.failedEventId = failedEventId
self.reason = reason
self.context = context
self.errorCode = errorCode
self.deviceCount = deviceCount
self.unspecifiedErrorMessage = unspecifiedErrorMessage
self.ts = ts
}
}