File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ export const addSteps = addMigrationSteps('1.52.0', [
82
82
// .abPlayers in the overrides:
83
83
for ( const override of studio . routeSetsWithOverrides . overrides ) {
84
84
if ( override . op === 'set' ) {
85
+ if ( override . path . includes ( '.' ) ) continue // Only include overrides at the top level
85
86
const value = override . value as StudioRouteSet
86
87
87
88
if ( ! value . abPlayers ) {
@@ -113,6 +114,7 @@ export const addSteps = addMigrationSteps('1.52.0', [
113
114
// .abPlayers in the overrides:
114
115
for ( const override of newRouteSetsWithOverrides . overrides ) {
115
116
if ( override . op === 'set' ) {
117
+ if ( override . path . includes ( '.' ) ) continue // Only include overrides at the top level
116
118
const value = override . value as StudioRouteSet
117
119
118
120
if ( ! value . abPlayers ) {
You can’t perform that action at this time.
0 commit comments