Skip to content

Commit

Permalink
Added flags to issue reports
Browse files Browse the repository at this point in the history
  • Loading branch information
M66B committed Jul 22, 2019
1 parent e139fe0 commit a70641c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/src/main/java/eu/faircode/email/Helper.java
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,8 @@ static Intent getIntentIssue(Context context) {
if (BuildConfig.BETA_RELEASE) {
String version = BuildConfig.VERSION_NAME + "/" +
(Helper.hasValidFingerprint(context) ? "1" : "3") +
(BuildConfig.PLAY_STORE_RELEASE ? "p" : "") +
(BuildConfig.DEBUG ? "d" : "") +
(Helper.isPro(context) ? "+" : "");
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setPackage(BuildConfig.APPLICATION_ID);
Expand Down

0 comments on commit a70641c

Please sign in to comment.