chat: Fix chat join link - %ask-history error

Without this third boolean argument, direct join links wouldn't work.

This commit adds it.
This commit is contained in:
Matilde Park 2019-12-05 01:08:16 -05:00
parent 8a2b3d1822
commit d1def489cc
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -30,7 +30,7 @@ export class JoinScreen extends Component {
});
return;
}
this.props.api.chatView.join(ship, station);
this.props.api.chatView.join(ship, station, true);
this.props.history.push('/~chat');
}
}