From 1e7207160c1f2334b001c6fb52276ceda2bbfeaf Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Mon, 17 Aug 2026 00:06:53 +0200 Subject: [PATCH] Fixed alert stash not syncing to manticore. --- src/alerts.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/alerts.js b/src/alerts.js index 8324c93..d18e92f 100755 --- a/src/alerts.js +++ b/src/alerts.js @@ -738,6 +738,7 @@ export async function notify(sceneIds, options = {}) { .insert(stashEntries) .onConflict(['stash_id', 'scene_id']) .ignore() + .returning('id') : [], notifications.length > 0 ? knex('notifications')