Преглед на файлове

fix(video): correct timestamp field names in tag data

Dave преди 1 месец
родител
ревизия
623a316a0f
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      apps/box-mgnt-api/src/mgnt-backend/feature/provider-video-sync/provider-video-sync.service.ts

+ 2 - 2
apps/box-mgnt-api/src/mgnt-backend/feature/provider-video-sync/provider-video-sync.service.ts

@@ -1139,8 +1139,8 @@ export class ProviderVideoSyncService {
               data: {
                 name,
                 // If your Tag schema requires seconds fields:
-                // createdAt: Math.floor(Date.now() / 1000),
-                // updatedAt: Math.floor(Date.now() / 1000),
+                createAt: Math.floor(Date.now() / 1000),
+                updateAt: Math.floor(Date.now() / 1000),
               },
             });