mirror of
https://github.com/ReCloudStudio/WebHooker.git
synced 2026-09-22 16:11:29 +00:00
feat(logs): populate send log detail and fix dedup re-claim condition
- dispatch: attach per-send detail (title/url/description/match/provider) so the admin log view shows message context, not just a bare ok flag - idempotency: compare dedup expiry against claimed_at instead of the new expires_at so non-expired duplicates are rejected and expired keys re-claim
This commit is contained in:
parent
c6198e855f
commit
c955db03c3
3 changed files with 14 additions and 2 deletions
|
|
@ -50,7 +50,7 @@ function createMockD1(): {
|
|||
dedupKeys.set(key, { claimedAt, expiresAt });
|
||||
return { success: true, meta: { changes: 1 } };
|
||||
}
|
||||
if (existing.expiresAt < expiresAt) {
|
||||
if (existing.expiresAt < claimedAt) {
|
||||
dedupKeys.set(key, { claimedAt, expiresAt });
|
||||
return { success: true, meta: { changes: 1 } };
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue