Commit cc1fd58f authored by Georg Koppen's avatar Georg Koppen
Browse files

Bug 21194: Show snowflake in the circuit display

parent 6cf471ed
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);
    }
  }