Skip to content

Commit

Permalink
Fixed NumberOfRows giving wrong value.
Browse files Browse the repository at this point in the history
  • Loading branch information
oseamiya authored Oct 7, 2021
1 parent 560e689 commit 28af52d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/oseamiya/baserow/Baserow.java
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public void onSuccess(String result) {
}
arrayLists.add(YailList.makeList(arrayList2));
}
GotAllRows(YailList.makeList(arrayLists) , arrayLists.size() + 1 , result);
GotAllRows(YailList.makeList(arrayLists) , arrayLists.size() , result);
} catch (JSONException e) {
e.printStackTrace();
}
Expand Down

0 comments on commit 28af52d

Please sign in to comment.