some improvements for prompt making

This commit is contained in:
2026-01-28 17:59:53 +03:00
parent d1e1245ece
commit 12d9591109
5 changed files with 47 additions and 46 deletions
+2 -1
View File
@@ -89,6 +89,7 @@ export class MessageDao extends Dao<StoredMessage> {
fromId: msg.fromId,
text: msg.text,
date: msg.date,
photoMaxSizeFilePath: msg.photoMaxSizeFilePath?.join(";"),
};
});
}
@@ -102,7 +103,7 @@ export class MessageDao extends Dao<StoredMessage> {
fromId: m.fromId,
text: m.text,
date: m.date,
photoMaxSizeFilePath: m.photoMaxSizeFilePath
photoMaxSizeFilePath: m.photoMaxSizeFilePath?.split(";")
};
});
}