Skip to content

Commit

Permalink
Fix issue FS format : random index
Browse files Browse the repository at this point in the history
  • Loading branch information
DantSu committed Apr 5, 2024
1 parent 411f4b0 commit 7754ef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/MainEvents/Processes/Import/ConvertFolderFS.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { convertAudios } from './Helpers/AudioFile.js'

const
varsToTransitionNode = (transitionActionNodeIndexInLI, transitionNumberOfOptions, transitionSelectedOptionIndex, actionNodeKey) => {
if (transitionActionNodeIndexInLI === -1 || transitionNumberOfOptions === -1 || transitionSelectedOptionIndex === -1) {
if (transitionActionNodeIndexInLI === -1 || transitionNumberOfOptions === -1) {
return null
}
return {
Expand Down

0 comments on commit 7754ef2

Please sign in to comment.