返回提交历史
Modified
src/services/importService.ts
+1
-3
XFEstudio/XFESpaceNinjaServer
chore(import): put UsedDailyDeals into string arrays (#3304)
Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/3304 Reviewed-by: Sainan <63328889+sainan@users.noreply.github.com> Co-authored-by: Animan8000 <187183497+Veniman8000@users.noreply.github.com> Co-committed-by: Animan8000 <187183497+Veniman8000@users.noreply.github.com>
9beb0a7c
代码差异
1 个文件
+1
-3
@@ -409,6 +409,7 @@ export const importInventory = (db: TInventoryDatabaseDocument, client: Partial<
409
409
"CompletedAlerts",
410
410
"CompletedSyndicates",
411
411
"DeathMarks",
412
"UsedDailyDeals",
412
413
"Wishlist",
413
414
"NemesisAbandonedRewards",
414
415
//"OneTimePurchases", // TODO: Import Antiques
@@ -478,9 +479,6 @@ export const importInventory = (db: TInventoryDatabaseDocument, client: Partial<
478
479
if (client.LastRegionPlayed !== undefined) {
479
480
db.LastRegionPlayed = client.LastRegionPlayed;
480
481
}
481
if (client.UsedDailyDeals !== undefined) {
482
db.UsedDailyDeals = client.UsedDailyDeals;
483
}
484
482
if (client.RecentVendorPurchases !== undefined) {
485
483
db.RecentVendorPurchases = client.RecentVendorPurchases.map(convertRecentVendorPurchases);
486
484
}