Skip to content

Commit

Permalink
fix(title): deriving title to url if blank (#709)
Browse files Browse the repository at this point in the history
  • Loading branch information
bassrock authored Aug 29, 2024
1 parent de57660 commit 9ae5bc2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ export class PocketMetadataModel {
id: item.id,
image: item.topImage ?? item.images?.[0],
excerpt: item.excerpt,
title: item.title ?? item.givenUrl,
title: item.title && item.title != '' ? item.title : item.givenUrl,
authors: item.authors,
domain: item.domainMetadata,
datePublished: item.datePublished
Expand Down

0 comments on commit 9ae5bc2

Please sign in to comment.