chat-js: fix issue with autojoining

This commit is contained in:
Logan Allen 2020-04-15 15:04:54 -04:00
parent 65cad93b1b
commit f035070387

View File

@ -27,7 +27,7 @@ export class JoinScreen extends Component {
let sig = props.autoJoin.includes("/~/");
let ship = !!sig ? station[2] : station[1];
station = station.join('/');
station = props.autoJoin;
if (
station.length < 2 ||
(!!sig && station.length < 3) ||