diff --git a/src/as/com/threerings/util/StringUtil.as b/src/as/com/threerings/util/StringUtil.as index da446b21f..96a313612 100644 --- a/src/as/com/threerings/util/StringUtil.as +++ b/src/as/com/threerings/util/StringUtil.as @@ -237,7 +237,6 @@ public class StringUtil /** A regular expression that finds URLs. */ protected static const URL_REGEXP :RegExp = - // recognize some standard protocols, plus 'command', which we use internally - new RegExp("(http|https|ftp|command)://\\S+", "i"); + new RegExp("(http|https|ftp)://\\S+", "i"); } }