Debug correlation ID

This commit is contained in:
M66B
2021-12-25 12:11:08 +01:00
parent 0c9450953c
commit e78602db93
3 changed files with 22 additions and 6 deletions

View File

@@ -2024,6 +2024,12 @@ public class MessageHelper {
return "flowmailer";
}
if (BuildConfig.DEBUG) {
String fairemail = imessage.getHeader(HEADER_CORRELATION_ID, null);
if (!TextUtils.isEmpty(fairemail))
return "fairemail";
}
return null;
}