Fix to new Android 1.6 storage code - callback wasn't being called for empty result sets.

This commit is contained in:
Jos Shepherd 2010-10-13 14:22:56 +08:00 committed by Bryce Curtis
parent 08963b5e5f
commit 5bdc81e84d

View File

@ -178,9 +178,10 @@ public class Storage extends Plugin {
} while (cur.moveToNext());
// Let JavaScript know that there are no more rows
this.sendJavascript("droiddb.completeQuery('" + tx_id + "');");
}
// Let JavaScript know that there are no more rows
this.sendJavascript("droiddb.completeQuery('" + tx_id + "');");
}
}