Fix "selected channel not visible in channel list"

Fix "The selected channel is not visible in the channel list" alert when the channel user play a game supporting RichPresence.
This commit is contained in:
Dot 2019-02-13 17:27:55 +01:00 committed by GitHub
parent 9e687212b2
commit 1f7bd010ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -87,7 +87,7 @@ var DISCORD = (function(){
return null;
}
var name = Array.prototype.find.call(channel.querySelector("[class|='name']").childNodes, node => node.nodeType === Node.TEXT_NODE).nodeValue;
var name = Array.prototype.find.call(channel.querySelector("span[class^='name']").childNodes, node => node.nodeType === Node.TEXT_NODE).nodeValue;
obj = {
"server": name,