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 +1 -1
- package/src/ap/index.js +1 -1
- package/src/ap/store.js +1 -1
package/package.json
CHANGED
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.
|
|
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
|
-
|
|
270
|
+
"INSERT OR REPLACE INTO actors (id, data, fetched_at) VALUES (?, ?, datetime('now'))",
|
|
271
271
|
[actor.id, JSON.stringify(actor)]
|
|
272
272
|
)
|
|
273
273
|
}
|