mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #3404 from omnivore-app/debug/extra-logging
Add logging to save_page service
This commit is contained in:
commit
3e0f8c884e
2 changed files with 2 additions and 1 deletions
|
|
@ -239,6 +239,7 @@ export const parsedContentToLibraryItem = ({
|
|||
rssFeedUrl?: string | null
|
||||
folder?: string | null
|
||||
}): DeepPartial<LibraryItem> & { originalUrl: string } => {
|
||||
console.log('save_page: state', { url, state, itemId })
|
||||
return {
|
||||
id: itemId || undefined,
|
||||
slug,
|
||||
|
|
|
|||
|
|
@ -224,7 +224,7 @@ export function HomeFeedContainer(): JSX.Element {
|
|||
if (itemsToUpdate.length > 0) {
|
||||
const link = await articleQuery({
|
||||
username,
|
||||
slug: item.node.slug,
|
||||
slug: item.node.id,
|
||||
includeFriendsHighlights: false,
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue