As an experiment, lower case words being looked up. Apparently one of

the Catalan sites doesn't like upper case.  At least in theory no site
should care so the rest of the world should be ok with lower case too.
This commit is contained in:
Eric House 2012-09-04 19:03:53 -07:00
parent 270a19f3aa
commit 5bdebd445f

View file

@ -78,6 +78,9 @@ public class LookupActivity extends XWListActivity
Intent intent = getIntent();
m_words = intent.getStringArrayExtra( WORDS );
for ( int ii = 0; ii < m_words.length; ++ii ) {
m_words[ii] = m_words[ii].toLowerCase();
}
setLang( intent.getIntExtra( LANG, -1 ) );
m_forceList = intent.getBooleanExtra( FORCELIST, false );