From c7e67a60cbe4b2fdca81040c441ac07e319ba59a Mon Sep 17 00:00:00 2001 From: seeeeew Date: Fri, 29 Jun 2018 00:32:40 +0200 Subject: [PATCH] Look for Twitch link in "Custom Info Box" showcase in addition to the profile summary resolves #1619 --- enhancedsteam.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enhancedsteam.js b/enhancedsteam.js index 370785ca..1686e6a8 100644 --- a/enhancedsteam.js +++ b/enhancedsteam.js @@ -2867,7 +2867,7 @@ function add_supporter_badges() { function add_twitch_info() { $(".profile_leftcol *").first().prepend(""); - var search = $(".profile_summary").find("a[href*='twitch.tv/']")[0]; + var search = $(".profile_summary, .customtext_showcase").find("a[href*='twitch.tv/']")[0]; if (search) { var twitch_id = $(search).attr("href").match(/twitch\.tv\/(.+)/)[1]; if (twitch_id) {