Fix feed replication. Ugh, Cory.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4104 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2023-01-04 02:59:35 +00:00
parent 8ed359327c
commit ff06e91ac8
2 changed files with 31 additions and 22 deletions

View File

@ -320,6 +320,9 @@ function ebtReplicateServer(request) {
ssb.addRpc(['ebt', 'replicate'], ebtReplicateServer);
ssb.addRpc(['createHistoryStream'], function(request) {
if (!request?.args) {
print('missing request.args in createHistoryStream');
}
var id = request.args[0].id;
var seq = request.args[0].seq;
var keys = request.args[0].keys || request.args[0].keys === undefined;