Skip to content

Commit

Permalink
fix deep scan issues
Browse files Browse the repository at this point in the history
  • Loading branch information
hdiniz committed May 13, 2024
1 parent c9191f2 commit 9b30282
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/models/Order.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,10 +248,10 @@ class Order extends Model<InferAttributes<Order>, InferCreationAttributes<Order>
HostCollectiveId: host?.id,
data: {
order: this.info,
fromAccountInfo: this.data.fromAccountInfo,
fromAccountInfo: this.data?.fromAccountInfo,
fromCollective: fromAccount.info,
host: host ? host.info : null,
toCollective: toAccount.info,
toCollective: toAccount?.info,
tierName: tier?.name,
},
});
Expand Down

0 comments on commit 9b30282

Please sign in to comment.