Merge pull request #2297 from pkova/os1-rc

chat: fix station string format
This commit is contained in:
Logan 2020-02-16 19:28:10 -08:00 committed by GitHub
commit bf789b987c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,7 +44,10 @@ export class ChatScreen extends Component {
componentDidUpdate(prevProps, prevState) { componentDidUpdate(prevProps, prevState) {
const { props, state } = this; const { props, state } = this;
const station = `/${props.match.params.ship}/${props.match.params.station}` const station =
props.match.params[1] === undefined ?
`/${props.match.params.ship}/${props.match.params.station}` :
`/${props.match.params[1]}/${props.match.params.ship}/${props.match.params.station}`;
if ( if (
prevProps.match.params.station !== props.match.params.station || prevProps.match.params.station !== props.match.params.station ||