Skip to content

Commit

Permalink
Fix extension repo migration not triggering
Browse files Browse the repository at this point in the history
  • Loading branch information
AntsyLich committed Mar 23, 2024
1 parent ba9cfd8 commit 9672ea8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ android {
defaultConfig {
applicationId = "app.mihon"

versionCode = 6
versionCode = 7
versionName = "0.16.4"

buildConfigField("String", "COMMIT_COUNT", "\"${getCommitCount()}\"")
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/eu/kanade/tachiyomi/Migrations.kt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ object Migrations {

val coroutineScope = CoroutineScope(Dispatchers.IO)

if (oldVersion < 6) {
if (oldVersion < 7) {
coroutineScope.launchIO {
for ((index, source) in sourcePreferences.extensionRepos().get().withIndex()) {
try {
Expand Down

0 comments on commit 9672ea8

Please sign in to comment.