Skip to content

Commit

Permalink
4.8 version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaji Khan committed Jul 3, 2024
1 parent dffe8c7 commit 1cf2604
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId "com.shajikhan.ladspa.amprack"
minSdk 24
targetSdk 33
versionCode 103
versionName '4.7'
versionCode 104
versionName '4.8'

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
externalNativeBuild {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public void onScrolled(@NonNull RecyclerView recyclerView, int dx, int dy) {
// loadProgress.setVisibility(View.INVISIBLE);
// loadProgress.setVisibility(View.VISIBLE);
// loadMore.setVisibility(View.INVISIBLE);
if (! favToggle.isChecked())
if (favToggle == null || ! favToggle.isChecked())
db.loadUserPresets(myPresetsAdapter,shared, quick);
}
}
Expand Down

0 comments on commit 1cf2604

Please sign in to comment.