Fix issue with params

This commit is contained in:
Liam 2022-10-19 10:54:17 +01:00
parent 250ca41e98
commit a43b619dd0

@ -91,7 +91,7 @@ export default class Overlay extends Component {
const params = Object.fromEntries(urlSearchParams.entries()); const params = Object.fromEntries(urlSearchParams.entries());
// Check what website the player wants to use // Check what website the player wants to use
if (params.beatleader === "true") { if (params.beatleader === "true" || params.beatLeader === "true") {
this.setState({ websiteType: "BeatLeader" }); this.setState({ websiteType: "BeatLeader" });
} }