This was working before, but now the .getLong method is returning a zero.
public class TaskerDBadapter
{
public static final String KEY_ROWID = "_id";
}
Bundle extras = getIntent().getExtras();
if (extras != null)
{
rowId = extras.getLong(TaskerDBadapter.KEY_ROWID);
}
When clearly that key has the value 14. If I inspect extras, I see the following:
Bundle[{_id=14, StartDate=3/17/2011, Pattern=Once, Description=Test}]
What gives?