This commit is contained in:
LukePulverenti 2013-03-09 10:24:44 -05:00
commit 73f6b33a4c
3 changed files with 3 additions and 3 deletions

View File

@ -313,7 +313,7 @@ namespace MediaBrowser.Controller.Entities
var path = Path; var path = Path;
// non file-system entries will not have a path // non file-system entries will not have a path
if (string.IsNullOrEmpty(path)) if (this.LocationType != LocationType.FileSystem || string.IsNullOrEmpty(path))
{ {
return new ItemResolveArgs(ConfigurationManager.ApplicationPaths) return new ItemResolveArgs(ConfigurationManager.ApplicationPaths)
{ {

View File

@ -31,7 +31,7 @@
<PublisherName>Media Browser Team</PublisherName> <PublisherName>Media Browser Team</PublisherName>
<SuiteName>Media Browser</SuiteName> <SuiteName>Media Browser</SuiteName>
<OpenBrowserOnPublish>false</OpenBrowserOnPublish> <OpenBrowserOnPublish>false</OpenBrowserOnPublish>
<ApplicationRevision>35</ApplicationRevision> <ApplicationRevision>36</ApplicationRevision>
<ApplicationVersion>0.1.1.%2a</ApplicationVersion> <ApplicationVersion>0.1.1.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust> <UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted> <PublishWizardCompleted>true</PublishWizardCompleted>

View File

@ -52,7 +52,7 @@ namespace MediaBrowser.Uninstaller.Execute
case "mbt": case "mbt":
Product = "Theater"; Product = "Theater";
RootSuffix = "-UI"; RootSuffix = "-Theater";
break; break;
default: default: