PrivacyDevel / nitter

Alternative Twitter front-end

Home Page:https://nitter.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Likes RSS feed generates empty

rotorot0 opened this issue · comments

Whenever I try to generate RSS feeds for the likes tab, they always come up completely empty.
image

After investigating, turns out that the tweet.user.id parameter in src/views/rss.nimf in line 64 is completely empty, causing the check to fail and exit the if statement.

Changing it to this fixes the issue

#    if tweet.user.id == "":
#      if userId.len > 0 and tweet.user.id == userId: continue
#        end if
#    elif userId.len > 0 and tweet.user.id != userId: continue

image

Here's the commit in my own repo
rotorot0@2969af1

RSS feed generation works normally for all other tabs too.

Any ideas to have an actual fix for this or is this good enough?