Skip to content

Commit 67ea6a6

Browse files
authored
Merge pull request #195 from Automattic/update/podcast-list-model
Fixing folder migration sync issue with the podcast sort positions.
2 parents 643318f + 6a837fb commit 67ea6a6

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

RELEASE-NOTES.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release notes
22

3+
### 7.20.1
4+
5+
* Bug Fixes:
6+
* Fix an issue where the podcasts order was being changed after migrating to the latest version.
7+
38
### 7.20.0
49

510
* New Features:

dependencies.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ project.ext {
2626
applicationId = 'au.com.shiftyjelly.pocketcasts'
2727

2828
versionCode = getVersionCode()
29-
versionName = '7.20.0' + getVersionNameSuffix()
29+
versionName = '7.20.1' + getVersionNameSuffix()
3030

3131
// Android
3232
minSdkVersion = 23

modules/services/preferences/src/main/java/au/com/shiftyjelly/pocketcasts/preferences/Settings.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ interface Settings {
4848
const val SERVER_DEVICE_TYPE = "2"
4949
const val SYNC_API_VERSION = 2
5050
const val SYNC_HISTORY_VERSION = 1
51-
const val SYNC_API_MODEL = "android"
51+
const val SYNC_API_MODEL = "mobile"
5252
const val LAST_UPDATE_TIME = "LastUpdateTime"
5353
const val LAST_SYNC_TIME = "LastSyncTime"
5454
const val PREFERENCE_SKIP_FORWARD = "skipForward"

0 commit comments

Comments
 (0)