Skip to content

Commit

Permalink
fix: import of faderActions.ts had bad path reference
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon committed Mar 25, 2021
1 parent 5695c77 commit 39c9f05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/reducers/fadersReducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import {
TOGGLE_ALL_MANUAL,
SET_ASSIGNED_CHANNEL,
REMOVE_ALL_ASSIGNED_CHANNELS,
} from '../reducers/faderActions'
} from './faderActions'

export interface IFaders {
fader: Array<IFader>
Expand Down
2 changes: 1 addition & 1 deletion server/utils/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const migrate45to46 = (currentSettings: ISettings): ISettings => {
)
// As this is the first implemented migration it also looks .shot files from ealier versions than 4.xx
if (stateFromShot.channelState.chConnection) {
// From Version 4.0
// From Version 4.xx
stateFromShot.channelState.chMixerConnection =
stateFromShot.channelState?.chConnection
delete stateFromShot.channelState.chConnection
Expand Down

0 comments on commit 39c9f05

Please sign in to comment.