Merge branch 'main' into release/v0.6.0

This commit is contained in:
Svilen Markov 2024-09-08 04:17:23 +01:00
commit d60457afaf
2 changed files with 2 additions and 1 deletions

1
.github/FUNDING.yml vendored Normal file
View File

@ -0,0 +1 @@
github: [glanceapp]

View File

@ -110,7 +110,7 @@ func getItemsFromRSSFeedTask(request RSSFeedRequest) ([]RSSFeedItem, error) {
if err == nil {
var link string
if item.Link[0] == '/' {
if len(item.Link) > 0 && item.Link[0] == '/' {
link = item.Link
} else {
link = "/" + item.Link