Changeset 857a06f in Klonkt for src/services/Scheduler.js
- Timestamp:
- 06/30/2026 05:43:39 PM (2 months ago)
- Branches:
- main
- Children:
- 7ecbefc
- Parents:
- b5a09ce2
- File:
-
- 1 edited
-
src/services/Scheduler.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/services/Scheduler.js
rb5a09ce2 r857a06f 15 15 try { 16 16 const due = db.prepare(` 17 SELECT p.id, p.site_id, p.slug, p.title, p.content, p.cover_image_url, p. fan_only, p.nsfw, p.content_warning,17 SELECT p.id, p.site_id, p.slug, p.title, p.content, p.cover_image_url, p.cover_video_url, p.fan_only, p.nsfw, p.content_warning, 18 18 p.published_at, p.publish_at, p.created_at, u.username 19 19 FROM posts p JOIN users u ON u.id = p.author_id … … 38 38 ActivityPubService.deliverCreate(site, { 39 39 id: p.id, slug: p.slug, title: p.title || p.slug, 40 content: p.content, cover_image_url: p.cover_image_url || null, 40 content: p.content, cover_image_url: p.cover_image_url || null, cover_video_url: p.cover_video_url || null, 41 41 published_at: p.published_at || p.publish_at, created_at: p.created_at, fan_only: p.fan_only, nsfw: p.nsfw, content_warning: p.content_warning, 42 42 }).catch(() => { /* best-effort */ });
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)