Fix an error with 'multiple mentions with same username' (#16038)
parent
89ef33df51
commit
0778ebc0b9
|
@ -276,7 +276,7 @@ class Formatter
|
||||||
|
|
||||||
linkable_accounts.each do |item|
|
linkable_accounts.each do |item|
|
||||||
same_username = item.username.casecmp(username).zero?
|
same_username = item.username.casecmp(username).zero?
|
||||||
same_domain = item.domain.nil? ? domain.nil? : item.domain.casecmp(domain).zero?
|
same_domain = item.domain.nil? ? domain.nil? : item.domain.casecmp(domain)&.zero?
|
||||||
|
|
||||||
if same_username && !same_domain
|
if same_username && !same_domain
|
||||||
same_username_hits += 1
|
same_username_hits += 1
|
||||||
|
|
Loading…
Reference in New Issue