mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 03:51:07 +08:00
FEATURE: Add last visit indication to topic view page. (#13471)
This PR also removes grey old unread bubble from the topic badges by dropping `TopicUser#highest_seen_post_number`.
This commit is contained in:

committed by
GitHub

parent
0f688f45bd
commit
37b8ce79c9
@ -598,8 +598,7 @@ class ImportScripts::Telligent < ImportScripts::Base
|
||||
# Mark all imported messages as read
|
||||
DB.exec(<<~SQL)
|
||||
UPDATE topic_users tu
|
||||
SET last_read_post_number = t.highest_post_number,
|
||||
highest_seen_post_number = t.highest_post_number
|
||||
SET last_read_post_number = t.highest_post_number
|
||||
FROM topics t
|
||||
JOIN topic_custom_fields tcf ON t.id = tcf.topic_id
|
||||
WHERE tu.topic_id = t.id
|
||||
|
Reference in New Issue
Block a user