We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67f02a4 commit 7ef4508Copy full SHA for 7ef4508
1 file changed
meteor/server/migration/X_X_X.ts
@@ -64,7 +64,7 @@ export const addSteps = addMigrationSteps(CURRENT_SYSTEM_VERSION, [
64
canBeRunAutomatically: true,
65
validate: async () => {
66
const playlistCount = await RundownPlaylists.countDocuments({ tTimers: { $exists: false } })
67
- if (playlistCount > 1) return `There are ${playlistCount} RundownPlaylists without T-timers`
+ if (playlistCount > 0) return `There are ${playlistCount} RundownPlaylists without T-timers`
68
return false
69
},
70
migrate: async () => {
0 commit comments