check product.Link is null.
Bugfix for http://websitepanel.codeplex.com/workitem/338 New Gallery - "All" not working
This commit is contained in:
parent
32457caae0
commit
24ee7357c1
1 changed files with 1 additions and 1 deletions
|
@ -387,7 +387,7 @@ namespace WebsitePanel.Providers.Web.WPIWebApplicationGallery
|
||||||
Summary = product.Summary,
|
Summary = product.Summary,
|
||||||
LastUpdated = product.Published,
|
LastUpdated = product.Published,
|
||||||
Published = product.Published,
|
Published = product.Published,
|
||||||
Link = product.Link.ToString(),
|
Link = (null == product.Link) ? "" : product.Link.ToString(),
|
||||||
InstallerFileSize = size
|
InstallerFileSize = size
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue