Skip to content

Commit

Permalink
www: detect all Android-supported architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
xen0n committed Dec 17, 2016
1 parent 5de708a commit d81454f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion www/rustup.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ function is_likely_android() {
}

return navigator.platform == "Linux armv7l"
|| navigator.platform == "Linux aarch64"
|| navigator.platform == "Linux mips"
|| navigator.platform == "Linux mips64";
|| navigator.platform == "Linux mips64"
|| navigator.platform == "Linux x86_64"
|| navigator.platform == "Linux i686"
|| navigator.platform == "Linux i686 on x86_64";
}

function detect_platform() {
Expand Down

0 comments on commit d81454f

Please sign in to comment.