Delete references to fetchChangesUpdateIntervalMs

This commit is contained in:
Andras Schmelczer 2025-03-25 21:38:09 +00:00
parent 5eaaca536f
commit 48ca6e7f7e
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
4 changed files with 1 additions and 77 deletions

View file

@ -246,29 +246,6 @@ export class SyncSettingsTab extends PluginSettingTab {
)
);
new Setting(containerEl)
.setName("Remote fetching frequency (seconds)")
.setDesc(
"Set how often should the plugin check for changes on the server. Lower values will increase the frequency of the checks making it easier to collaborate with others."
)
.setTooltip("todo, links to docs")
.addSlider((text) =>
text
.setLimits(0.5, 60, 0.5)
.setDynamicTooltip()
.setInstant(false)
.setValue(
this.syncClient.getSettings()
.fetchChangesUpdateIntervalMs / 1000
)
.onChange(async (value) =>
this.syncClient.setSetting(
"fetchChangesUpdateIntervalMs",
value * 1000
)
)
);
new Setting(containerEl)
.setName("Sync concurrency")
.setDesc(