260312:1013 20260312:0930 n8n workflow, backend and frontend MOD. #2
Build and Deploy / deploy (push) Failing after 2m50s
Build and Deploy / deploy (push) Failing after 2m50s
This commit is contained in:
@@ -196,7 +196,17 @@ export class MigrationService {
|
||||
}
|
||||
|
||||
// Helper function to parse Date safety
|
||||
const parseDateStr = (d?: string) => (d ? new Date(d) : undefined);
|
||||
const parseDateStr = (d?: string | number) => {
|
||||
if (!d) return undefined;
|
||||
const num = Number(d);
|
||||
if (!isNaN(num) && num > 20000 && num < 100000) {
|
||||
return new Date(Math.round((num - 25569) * 86400 * 1000));
|
||||
}
|
||||
const parsed = new Date(d);
|
||||
if (isNaN(parsed.getTime())) return undefined;
|
||||
if (parsed.getFullYear() > 2100 || parsed.getFullYear() < 1900) return undefined;
|
||||
return parsed;
|
||||
};
|
||||
|
||||
// 5. Create Revision
|
||||
const revisionCount = await queryRunner.manager.count(
|
||||
|
||||
Reference in New Issue
Block a user