You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 26, 2025. It is now read-only.
When we query a package and its product is null but not products property then get packages throws exception.
Following code can be used to fix the issue
if (dcathandler.ProductListing.Product == null)
dcathandler.ProductListing.Product = dcathandler.ProductListing.Products[0];
var g = await dcathandler.GetPackagesForProductAsync();