Fixes #1937447. Home was not saving the appropriate state when losing focus.

This commit is contained in:
Romain Guy
2009-06-23 17:34:54 -07:00
parent 417d23428a
commit 1ce1a24cba
9 changed files with 31 additions and 20 deletions
@@ -116,7 +116,7 @@ class LiveFolderAdapter extends CursorAdapter {
if (holder.intentIndex != -1) {
try {
holder.intent = Intent.getIntent(cursor.getString(holder.intentIndex));
holder.intent = Intent.parseUri(cursor.getString(holder.intentIndex), 0);
} catch (URISyntaxException e) {
// Ignore
}