Skip to content

Commit

Permalink
Fixed small bug with regards to filtering habits from agenda.
Browse files Browse the repository at this point in the history
  • Loading branch information
hdweiss committed Dec 10, 2012
1 parent fa9357e commit f385ee4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/matburt/mobileorg/Gui/Agenda/OrgQueryBuilder.java
Expand Up @@ -74,7 +74,7 @@ public SelectionBuilder getQuery(Context context) {
builder.where(getLikeSelection(payloads, OrgData.PAYLOAD)); builder.where(getLikeSelection(payloads, OrgData.PAYLOAD));


if(filterHabits) if(filterHabits)
builder.where("NOT " + OrgData.PAYLOAD + " LIKE ?", "'%:STYLE: habit%'"); builder.where("NOT " + OrgData.PAYLOAD + " LIKE ?", "%:STYLE: habit%");


return builder; return builder;
} }
Expand Down

0 comments on commit f385ee4

Please sign in to comment.