Bug 710302 - going to about: pages does a 'feeling lucky' search [r=mfinkle a=java-only]

This commit is contained in:
Matt Brubeck 2011-12-13 19:17:58 -05:00
parent 724b7f5edb
commit 87673c259e

View File

@ -234,7 +234,7 @@ public class AwesomeBar extends Activity implements GeckoEventListener {
// If a space is found before any dot or colon, we assume this is a search query
boolean spacedOut = space > -1 && (space < colon || space < dot);
return spacedOut || (dot == -1);
return spacedOut || (dot == -1 && colon == -1);
}
private void updateGoButton(String text) {