We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ac52b2 commit 0e56b53Copy full SHA for 0e56b53
1 file changed
atlas/transactions/user/fulfill_pack_buyback_offer.cdc
@@ -91,7 +91,7 @@ transaction() {
91
for i, nftID in self.nftIDs {
92
// Ensure no active listing exists for this NFT
93
assert(!listingIDsByNFTID.containsKey(nftID),
94
- message: "NFT ".concat(nftID.toString()).concat(" already listed, id=").concat(listingIDsByNFTID[nftID]?.toString() ?? "nil"))
+ message: "NFT ".concat(nftID.toString()).concat(" already listed, id=").concat(listingIDsByNFTID[nftID] != nil ? listingIDsByNFTID[nftID]!.toString() : "nil"))
95
96
// List NFT for sale
97
let listingID = self.userStorefront.createListing(
0 commit comments