mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 09:47:13 +00:00
Improved breadcrumb
This commit is contained in:
parent
9543eef292
commit
4105ec16fe
1 changed files with 2 additions and 0 deletions
|
@ -4386,6 +4386,8 @@ public class FragmentCompose extends FragmentBase {
|
|||
Map<String, String> crumb = new HashMap<>();
|
||||
crumb.put("draft", draft.folder + ":" + draft.id);
|
||||
crumb.put("content", Boolean.toString(draft.content));
|
||||
crumb.put("revision", Integer.toString(draft.revision == null ? -1 : draft.revision));
|
||||
crumb.put("revisions", Integer.toString(draft.revisions == null ? -1 : draft.revisions));
|
||||
crumb.put("file", Boolean.toString(draft.getFile(context).exists()));
|
||||
crumb.put("action", getActionName(action));
|
||||
Log.breadcrumb("compose", crumb);
|
||||
|
|
Loading…
Reference in a new issue