Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.

Fix NullException #38

Open
wants to merge 1 commit into
base: Public
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -355,3 +355,6 @@ MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/

# VisualStudio launch settings
launchSettings.json
2 changes: 1 addition & 1 deletion StoreLib.Cli/CommandHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public static async Task PackagesAsync(DisplayCatalogHandler dcatHandler, string
var product = dcatHandler.ProductListing.Products[0];
var props = product.DisplaySkuAvailabilities[0].Sku.Properties;
var header = $"{product.LocalizedProperties[0].ProductTitle} - {product.LocalizedProperties[0].PublisherName}";

dcatHandler.ProductListing.Product = product;

Console.WriteLine($"Processing {header}");

Expand Down