Fix a runaway thing in journal, too, same as wiki.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4613 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
Cory McWilliams 2023-11-05 23:26:54 +00:00
parent dfe5d51d04
commit b83704a218
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,5 @@
{ {
"type": "tildefriends-app", "type": "tildefriends-app",
"emoji": "📝", "emoji": "📝",
"previous": "&+jnk3iO0yawpSdGlskVJK7rxGV401yzSWsholYrAymE=.sha256" "previous": "&2hdIDbBrAg63T2X1MzdGSF7yiqHvlnfF0PnInQLp0DA=.sha256"
} }

View File

@ -153,6 +153,7 @@ tfrpc.register(async function collection(ids, kind, parent, max_rowid, data) {
function(row) { function(row) {
rows.push(row); rows.push(row);
}); });
max_rowid = rowid;
for (let row of rows) { for (let row of rows) {
if (await process_message(whoami, data, row, kind, parent)) { if (await process_message(whoami, data, row, kind, parent)) {
modified = true; modified = true;