update scheduled tasks page

pull/702/head
Luke Pulverenti 9 years ago
parent 9ec1376e5f
commit cc023262c5

@ -84,7 +84,8 @@ namespace MediaBrowser.Controller.Entities
CollectionType.HomeVideos, CollectionType.HomeVideos,
CollectionType.Photos, CollectionType.Photos,
CollectionType.Playlists, CollectionType.Playlists,
CollectionType.BoxSets CollectionType.BoxSets,
CollectionType.MusicVideos
}; };
var collectionFolder = folder as ICollectionFolder; var collectionFolder = folder as ICollectionFolder;

@ -22,6 +22,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants> <DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget> <PlatformTarget>AnyCPU</PlatformTarget>

@ -1,5 +1,4 @@
using MediaBrowser.Common.IO; using MediaBrowser.Common.Net;
using MediaBrowser.Common.Net;
using MediaBrowser.IsoMounter; using MediaBrowser.IsoMounter;
using MediaBrowser.Model.Logging; using MediaBrowser.Model.Logging;
using MediaBrowser.Server.Startup.Common; using MediaBrowser.Server.Startup.Common;
@ -23,7 +22,10 @@ namespace MediaBrowser.ServerApplication.Native
{ {
var list = new List<Assembly>(); var list = new List<Assembly>();
if (!System.Environment.Is64BitProcess)
{
list.Add(typeof(PismoIsoManager).Assembly); list.Add(typeof(PismoIsoManager).Assembly);
}
list.Add(GetType().Assembly); list.Add(GetType().Assembly);

Loading…
Cancel
Save