Added remarks

This commit is contained in:
M66B
2023-12-14 19:37:49 +01:00
parent aba9e355ef
commit 146b8c12e7
8 changed files with 12 additions and 12 deletions

View File

@@ -1909,7 +1909,7 @@ public class Log {
draft.id = db.message().insertMessage(draft);
File file = draft.getFile(context);
Helper.writeText(file, body); // TODO CASA
Helper.writeText(file, body); // TODO CASA system info
db.message().setMessageContent(draft.id, true, null, 0, null, null);
attachSettings(context, draft.id, 1);
@@ -3828,7 +3828,7 @@ public class Log {
private static int write(OutputStream os, String text) throws IOException {
byte[] bytes = text.getBytes();
os.write(bytes); // TODO CASA
os.write(bytes); // TODO CASA system info
return bytes.length;
}