Skip to content

Commit

Permalink
v0.1-alpha1 hotfix
Browse files Browse the repository at this point in the history
Fix stupid bug for v0.1-alpha1 (#25)
  • Loading branch information
iyxan23 authored Feb 11, 2021
2 parents ad5e048 + 9aa30fd commit dd7fb6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class BrowseActivity extends AppCompatActivity {
boolean is_at_bottom = false;

// The project count that should be loaded
int project_count_should_be_loaded = 5;
int project_count_should_be_loaded = 100; // TEMP FIX, CURRENT PAGINATION IS BROKEN

@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ protected void onCreate(@Nullable Bundle savedInstanceState) {
progressDialog.show();

DocumentReference projectRefDoc = projectRef.document();
CollectionReference snapshotRef = projectRefDoc.collection("logic");
CollectionReference snapshotRef = projectRefDoc.collection("snapshot");
CollectionReference commitRef = projectRefDoc.collection("commits");

// Upload the project metadata
Expand Down

0 comments on commit dd7fb6d

Please sign in to comment.