From 1df317b59f565b78eb49206cfc11ca4e1da6124f Mon Sep 17 00:00:00 2001 From: Andreas Linde Date: Thu, 20 Feb 2014 14:02:02 +0100 Subject: [PATCH] If BITAuthenticator is set to BITAuthenticatorIdentificationTypeWebAuth then also attach the user email to crash reports --- Classes/BITCrashManager.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Classes/BITCrashManager.m b/Classes/BITCrashManager.m index fca13fc4bf..b0d3b33783 100644 --- a/Classes/BITCrashManager.m +++ b/Classes/BITCrashManager.m @@ -357,7 +357,8 @@ NSString *const kBITCrashManagerStatus = @"BITCrashManagerStatus"; // if we have an identification from BITAuthenticator, use this as a default. if (( self.installationIdentificationType == BITAuthenticatorIdentificationTypeHockeyAppEmail || - self.installationIdentificationType == BITAuthenticatorIdentificationTypeHockeyAppUser + self.installationIdentificationType == BITAuthenticatorIdentificationTypeHockeyAppUser || + self.installationIdentificationType == BITAuthenticatorIdentificationTypeWebAuth ) && self.installationIdentification) { useremail = self.installationIdentification;