Skip to content

Commit

Permalink
Fix 32-bit Java link
Browse files Browse the repository at this point in the history
  • Loading branch information
Scotsguy committed Jan 31, 2020
1 parent e5bd1de commit bf41c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parsers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ fn java_version(log: &str) -> Option<(&str, String)> {
fn java_architecture(log: &str) -> Option<(&str, String)> {
const TRIGGER: &str = "Your Java architecture is not matching your system architecture.";
if log.contains(TRIGGER) {
Some(("❗", "You're using 32-bit Java. You should install 64-bit Java from [this link](https://java.com/en/download/manual.jsp).".to_string()))
Some(("❗", "You're using 32-bit Java. [See here for help installing the correct version.](https://github.com/MultiMC/MultiMC5/wiki/Using-the-right-Java)".to_string()))
} else {
None
}
Expand Down

0 comments on commit bf41c86

Please sign in to comment.