javascript-solid-server 0.0.65 → 0.0.66

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "javascript-solid-server",
3
- "version": "0.0.65",
3
+ "version": "0.0.66",
4
4
  "description": "A minimal, fast Solid server",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
package/src/ap/index.js CHANGED
@@ -135,7 +135,7 @@ export async function activityPubPlugin(fastify, options = {}) {
135
135
  version: '2.1',
136
136
  software: {
137
137
  name: 'jss',
138
- version: '0.0.65',
138
+ version: '0.0.66',
139
139
  repository: 'https://github.com/JavaScriptSolidServer/JavaScriptSolidServer'
140
140
  },
141
141
  protocols: ['activitypub', 'solid'],
package/src/ap/store.js CHANGED
@@ -267,7 +267,7 @@ export function getPostCount() {
267
267
 
268
268
  export function cacheActor(actor) {
269
269
  runStmt(
270
- 'INSERT OR REPLACE INTO actors (id, data, fetched_at) VALUES (?, ?, datetime("now"))',
270
+ "INSERT OR REPLACE INTO actors (id, data, fetched_at) VALUES (?, ?, datetime('now'))",
271
271
  [actor.id, JSON.stringify(actor)]
272
272
  )
273
273
  }