fix corner case in strip_func_ids() (#3090)
This commit is contained in:
@@ -40,7 +40,7 @@ function safe_log(arg, level) {
|
||||
}
|
||||
|
||||
function strip_func_ids(text) {
|
||||
return text.toString().replace(/F[0-9]{6}N/g, "<F<>N>");
|
||||
return ("" + text).replace(/F[0-9]{6}N/g, "<F<>N>");
|
||||
}
|
||||
|
||||
var context;
|
||||
|
||||
Reference in New Issue
Block a user