commit cc1fd58f8fc99d580e5d032ac113e08409f786be Author: Georg Koppen gk@torproject.org Date: Wed Jan 11 10:31:52 2017 +0000
Bug 21194: Show snowflake in the circuit display --- src/modules/tor-control-port.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/modules/tor-control-port.js b/src/modules/tor-control-port.js index b3d431a..3491efc 100644 --- a/src/modules/tor-control-port.js +++ b/src/modules/tor-control-port.js @@ -486,8 +486,8 @@ info.bridgeParser = function(bridgeLine) { // Several bridge types have a similar format: } else { result.type = tokens[0]; - if (["flashproxy", "fte", "meek", "obfs3", "obfs4", "scramblesuit"] - .indexOf(result.type) >= 0) { + if (["flashproxy", "fte", "meek", "obfs3", "obfs4", "scramblesuit", + "snowflake"].indexOf(result.type) >= 0) { [result.address, result.ID] = tokens.slice(1); } }
tbb-commits@lists.torproject.org