Skip to content

Commit

Permalink
fix(FEC-7172): fix DRM support test on Android devices (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
OrenMe authored and Dan Ziv committed Sep 18, 2017
1 parent 0a30542 commit a5ec887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/drm/drm-support.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default class DrmSupport {
Chrome: () => {
let device = Env.device.type;
let os = Env.os.name;
if (!device || (device === 'mobile' && os === 'Android')) {
if (!device || os === 'Android') {
return DrmScheme.WIDEVINE;
}
return NOT_SUPPORTED;
Expand Down

0 comments on commit a5ec887

Please sign in to comment.