summaryrefslogtreecommitdiffstats
path: root/updater_sample/src/com/example/android/systemupdatersample/UpdateConfig.java
diff options
context:
space:
mode:
Diffstat (limited to 'updater_sample/src/com/example/android/systemupdatersample/UpdateConfig.java')
-rw-r--r--updater_sample/src/com/example/android/systemupdatersample/UpdateConfig.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/updater_sample/src/com/example/android/systemupdatersample/UpdateConfig.java b/updater_sample/src/com/example/android/systemupdatersample/UpdateConfig.java
index b08bfd0f6..9bdd8b9e8 100644
--- a/updater_sample/src/com/example/android/systemupdatersample/UpdateConfig.java
+++ b/updater_sample/src/com/example/android/systemupdatersample/UpdateConfig.java
@@ -79,9 +79,13 @@ public class UpdateConfig implements Parcelable {
p.getLong("offset"),
p.getLong("size"));
}
+ String authorization = null;
+ if (meta.has("authorization")) {
+ authorization = meta.getString("authorization");
+ }
c.mAbStreamingMetadata = new StreamingMetadata(
propertyFiles,
- meta.getString("authorization_token"));
+ authorization);
}
c.mRawJson = json;
return c;
@@ -196,7 +200,7 @@ public class UpdateConfig implements Parcelable {
}
public Optional<String> getAuthorization() {
- return Optional.of(mAuthorization);
+ return mAuthorization == null ? Optional.empty() : Optional.of(mAuthorization);
}
}