0
0
Fork 0

Make User#current_sign_in_at actually track when user was last active,

by updating it at least every 24h if the user visits the site
This commit is contained in:
Eugen Rochko 2016-11-30 15:17:03 +01:00
parent 872a35011a
commit ff21ff1489
2 changed files with 6 additions and 1 deletions

View file

@ -6,7 +6,7 @@ module StreamEntriesHelper
end
def avatar_for_status_url(status)
status.reblog? ? status.reblog.account.avatar.url(:medium) : status.account.avatar.url(:medium)
status.reblog? ? status.reblog.account.avatar.url(:large) : status.account.avatar.url(:large)
end
def entry_classes(status, is_predecessor, is_successor, include_threads)