fix: storage internalSchedule typo
This commit is contained in:
		@@ -152,11 +152,11 @@ module.exports = class Storage extends Model {
 | 
				
			|||||||
          }
 | 
					          }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
          // -> Set internal recurring sync job
 | 
					          // -> Set internal recurring sync job
 | 
				
			||||||
          if (targetDef.intervalSchedule && targetDef.intervalSchedule !== `P0D`) {
 | 
					          if (targetDef.internalSchedule && targetDef.internalSchedule !== `P0D`) {
 | 
				
			||||||
            WIKI.scheduler.registerJob({
 | 
					            WIKI.scheduler.registerJob({
 | 
				
			||||||
              name: `sync-storage`,
 | 
					              name: `sync-storage`,
 | 
				
			||||||
              immediate: false,
 | 
					              immediate: false,
 | 
				
			||||||
              schedule: target.intervalSchedule,
 | 
					              schedule: target.internalSchedule,
 | 
				
			||||||
              repeat: true
 | 
					              repeat: true
 | 
				
			||||||
            }, target.key)
 | 
					            }, target.key)
 | 
				
			||||||
          }
 | 
					          }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user