braidfs 0.0.114 → 0.0.116

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -187,7 +187,7 @@ async function main() {
187
187
  }
188
188
  }).listen(config.port, () => {
189
189
  console.log(`daemon started on port ${config.port}`)
190
- if (!config.allow_remote_access) console.log('!! only accessible from localhost !!')
190
+ console.log('!! only accessible from localhost !!')
191
191
 
192
192
  sync_url('.braidfs/config').then(() => {
193
193
  braid_text.get('.braidfs/config', {
@@ -1040,7 +1040,6 @@ async function sync_url(url) {
1040
1040
 
1041
1041
  // for config and errors file, listen for web changes
1042
1042
  if (!is_external_link) braid_text.get(url, braid_text_get_options = {
1043
- merge_type: 'dt',
1044
1043
  peer: self.peer,
1045
1044
  subscribe: () => self.signal_file_needs_writing(),
1046
1045
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "braidfs",
3
- "version": "0.0.114",
3
+ "version": "0.0.116",
4
4
  "description": "braid technology synchronizing files and webpages",
5
5
  "author": "Braid Working Group",
6
6
  "repository": "braid-org/braidfs",