Skip to content

Commit

Permalink
update latest Nintendont version
Browse files Browse the repository at this point in the history
  • Loading branch information
JLaferri committed Jun 2, 2021
1 parent cc9c043 commit 964d799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/Console.js
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ export default class Console extends Component {
const status = connection.connectionStatus;
const version = connection.connDetails.version;
const isNintendont = connection.port === Ports.WII_DEFAULT || !connection.port;
const versionOutdated = !version || semver.lt(version, "1.9.0-dev-2"); // TODO: Latest Nintendont Release Version
const versionOutdated = !version || semver.lt(version, "1.9.0"); // TODO: Latest Nintendont Release Version

let outdatedNotif = null;
if (status === ConnectionStatus.CONNECTED && isNintendont && versionOutdated) {
Expand Down

0 comments on commit 964d799

Please sign in to comment.