1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-05 18:26:56 +00:00

bugfix multiwikiclientadaptor

This commit is contained in:
joshuafontany 2025-03-04 00:42:14 -08:00
parent c783d20884
commit e0a9ea9503
2 changed files with 1 additions and 3 deletions

View File

@ -1,2 +0,0 @@
list: GettingStarted
title: $:/StoryList

View File

@ -287,7 +287,7 @@ MultiWikiClientAdaptor.prototype.checkLastRecordedUpdate = function(title,revisi
var numRevision = $tw.utils.getInt(revision);
console.log(`Checking for updates to ${title} since ${JSON.stringify(revision)} comparing to ${numRevision}`)
if(lru.tiddler_id > numRevision) {
options.syncer.enqueueLoadTiddler(title);
syncer.enqueueLoadTiddler(title);
}
}
}