diff options
Diffstat (limited to 'misc/chrome/gophertool/gopher.js')
-rw-r--r-- | misc/chrome/gophertool/gopher.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/chrome/gophertool/gopher.js b/misc/chrome/gophertool/gopher.js index 847c1c70d..3238f0fcc 100644 --- a/misc/chrome/gophertool/gopher.js +++ b/misc/chrome/gophertool/gopher.js @@ -12,7 +12,7 @@ function urlForInput(t) { } if (numericRE.test(t)) { - if (t < 1000000) { + if (t < 150000) { return "http://code.google.com/p/go/issues/detail?id=" + t; } return "http://codereview.appspot.com/" + t + "/"; |