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