-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] TiddlyWeb shouldn't sync $:/StoryList to the client #8747
Comments
I was able to reproduce this with a very specific combination of options:
The Comparing when I use the wiki logged in via HTTP Basic Authentication versus anonymous, the anonymous access issues a HTTP GET for If you do not require the EDIT: The "why it happens" seems a bit obvious after I stepped away for a few minutes. It's even in the description for $:/config/SyncSystemTiddlersFromServer, which I read an hour or so ago, but apparently didn't fully understand. Here's the relevant part:
The part I failed to grasp on first read was that "sync" doesn't just apply when the client is saving; it also applies when the client is fetching. The server route in Possible fix is to add another conditional in that route that checks |
Thank you @jrbntt , this is the correct answer, a feature, not a bug. After deleting I remember a bad implementation in previous version of my "command palette plugin" introduce this setting, and I remove it afterwards, but forget to delete this config tiddler from my wiki. |
@linonetwo Glad that this resolved the problem. The idea I floated about modifying the filter for System tiddlers in case of |
Describe the bug
In readonly client-server setup, the wiki may sync
$:/StoryList
to the client, redirect the client to another tiddler by overwriting client's$:/StoryList
Expected behavior
Don't send
$:/StoryList
to the client, each client should have its own$:/StoryList
.To Reproduce
$:/StoryList
on backgroundhttps://wiki.onetwo.ren/#Index:Index
by it selfScreenshots
No response
TiddlyWiki Configuration
Additional context
The server is started by
where
password
is random generated and masked here. I use random password to make it a readonly blog site.The text was updated successfully, but these errors were encountered: