Skip to content

Commit

Permalink
bump to 21.78
Browse files Browse the repository at this point in the history
  • Loading branch information
yuliskov committed Apr 27, 2024
1 parent 3aee6b4 commit c6e77cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -148,7 +148,7 @@ public void enableSection(int sectionId, boolean enabled) {

int index = getDefaultSectionIndex(sectionId);

if (index == -1) {
if (index == -1 || index > mPinnedItems.size()) {
mPinnedItems.add(item);
} else {
mPinnedItems.add(index, item);
Expand Down
4 changes: 2 additions & 2 deletions smarttubetv/build.gradle
Expand Up @@ -60,8 +60,8 @@ android {
applicationId "com.liskovsoft.smarttubetv"
minSdkVersion project.properties.minSdkVersion
targetSdkVersion project.properties.targetSdkVersion
versionCode 1367
versionName "21.77"
versionCode 1368
versionName "21.78"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"

Expand Down

0 comments on commit c6e77cf

Please sign in to comment.