Skip to content

Commit 01def49

Browse files
authored
Merge pull request #3494 from dimagi/hotfix-fix-user-info-missing-in-crash-reports
Fix user info missing in Crashlytics reports (Hotfix)
2 parents 5bb211f + 4e129b7 commit 01def49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/src/org/commcare/android/logging/ReportingUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ public static String getUserForCrashes() {
144144
if (user.isEmpty()) {
145145
return getPersonalID();
146146
}
147-
} catch (Exception ignored) {
148-
}
147+
return user;
148+
} catch (Exception ignored) {}
149149
return null;
150150
}
151151

0 commit comments

Comments
 (0)