mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Add some debugging
This commit is contained in:
parent
d2c0efc540
commit
fbaaaeca7c
1 changed files with 3 additions and 1 deletions
|
|
@ -290,7 +290,7 @@ export const updateSubscriptionResolver = authorized<
|
|||
lastFetchedAt: input.lastFetchedAt
|
||||
? new Date(input.lastFetchedAt)
|
||||
: undefined,
|
||||
lastFetchedChecksum: input.lastfetchedChecksum,
|
||||
lastFetchedChecksum: input.lastfetchedChecksum || undefined,
|
||||
status: input.status || undefined,
|
||||
})
|
||||
|
||||
|
|
@ -300,6 +300,8 @@ export const updateSubscriptionResolver = authorized<
|
|||
})
|
||||
})
|
||||
|
||||
console.log('updatedSubscription', updatedSubscription)
|
||||
|
||||
return {
|
||||
subscription: updatedSubscription,
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue