mirror of
https://github.com/discourse/discourse.git
synced 2025-09-10 12:04:21 +08:00
FIX: Show Uncategorized when unsubscribing (#13832)
If user tried to unsubscribe from a post from category Uncategorized, the category name was not displayed. It said only "Stop watching all topics in".
This commit is contained in:
parent
ffb3e7b356
commit
6db93e86d4
2 changed files with 3 additions and 1 deletions
|
@ -273,6 +273,8 @@ RSpec.describe EmailController do
|
|||
|
||||
navigate_to_unsubscribe
|
||||
expect(response.body).to include("unwatch_category")
|
||||
doc = Nokogiri::HTML5::fragment(response.body)
|
||||
expect(doc.css('a.badge-wrapper[href="/c/uncategorized/1"]').size).to eq(1)
|
||||
|
||||
cu.destroy!
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue