Extended breadcrumb

This commit is contained in:
M66B 2021-12-08 14:16:50 +01:00
parent cd117c3251
commit be0379d0ed
1 changed files with 2 additions and 0 deletions

View File

@ -5719,7 +5719,9 @@ public class FragmentCompose extends FragmentBase {
c.put("id", draft.id == null ? null : Long.toString(draft.id));
c.put("dirty", Boolean.toString(dirty));
c.put("encrypt", draft.encrypt + "/" + draft.ui_encrypt);
c.put("encrypted", Boolean.toString(encrypted));
c.put("needsEncryption", Boolean.toString(needsEncryption));
c.put("autosave", Boolean.toString(autosave));
Log.breadcrumb("Save draft", c);
EntityOperation.queue(context, draft, EntityOperation.ADD);