Skip to content

Commit

Permalink
fix realm query
Browse files Browse the repository at this point in the history
fix #870
  • Loading branch information
larsgrefer committed May 7, 2016
1 parent 7dbbcec commit 7142c6e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ public void execute(Realm realm) {
.findAll().clear();*/

// =========== CID ===========
realm.where(Import.class).lessThan("cell", 1).findAll().deleteAllFromRealm();
realm.where(Import.class).lessThan("cellId", 1).findAll().deleteAllFromRealm();

// We should delete cells with UMTS/LTE (3,13) CID not in [1,268435455] (0xFFF FFFF) but
// we can simplify this to:
Expand Down

0 comments on commit 7142c6e

Please sign in to comment.