Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Unreal-Dan committed Dec 20, 2024
1 parent dce205d commit 4fd7d7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/ChromalinkPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default class ChromalinkPanel extends Panel {
throw new Error('Failed to read Duo save header');
}
this.isConnected = true;
await this.editor.checkVersion('Duo', this.duoHeader.version);
//await this.editor.checkVersion('Duo', this.duoHeader.version);
const connectButton = document.getElementById('chromalinkConnect');
connectButton.innerHTML = 'Disconnect Duo'
this.oldModes = new this.editor.vortexLib.ByteStream();
Expand Down
2 changes: 1 addition & 1 deletion js/VortexEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default class VortexEditor {

// Fetch the latest firmware versions from vortex.community
let latestFirmwareVersions;
if (window.location.hostname.startsWith('vortex.community')) {
if (window.location.hostname.startsWith('lightshow.lol')) {
const response = await fetch('https://vortex.community/downloads/json');
latestFirmwareVersions = await response.json();
} else {
Expand Down

0 comments on commit 4fd7d7d

Please sign in to comment.