Skip to content

Commit

Permalink
Merge pull request #47 from scribd/katherine/APT-10393-bug
Browse files Browse the repository at this point in the history
[APT-10393] Downloaded content bug
  • Loading branch information
kabliz authored Sep 19, 2024
2 parents 51a8c21 + 39db9a7 commit 27c8256
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ internal class ArmadilloSecureStorage @Inject constructor(

override fun downloadSecretKey(context: Context): ByteArray {
return if (secureStandardStorage.contains(DOWNLOAD_KEY)) {
val storedKey = secureDrmStorage.getString(DOWNLOAD_KEY, DEFAULT) ?: DEFAULT
val storedKey = secureStandardStorage.getString(DOWNLOAD_KEY, DEFAULT) ?: DEFAULT
if (storedKey == DEFAULT) {
Log.e(TAG, "Storage Is Out of Alignment")
}
Expand Down
3 changes: 3 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Project Armadillo Release Notes

## 1.6.4
- Resolves download issue resulting in downloaded storage often being out of alignment

## 1.6.3
- Prevents downloaded content with rotating URLs from being lost in the download system after the URL moves.
- Prevents devices that fail to initialize encrypted storage from crashing during initialization.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ org.gradle.jvmargs=-Xmx1536m
# org.gradle.parallel=true
PACKAGE_NAME=com.scribd.armadillo
GRADLE_PLUGIN_VERSION=7.2.0
LIBRARY_VERSION=1.6.3
LIBRARY_VERSION=1.6.4
EXOPLAYER_VERSION=2.19.1
RXJAVA_VERSION=2.2.4
RXANDROID_VERSION=2.0.1
Expand Down

0 comments on commit 27c8256

Please sign in to comment.