mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
improve offline support and add a web client indicator
This commit is contained in:
parent
dc21adf1a4
commit
014f2949d7
@ -1,5 +1,4 @@
|
|||||||
using MediaBrowser.Common.Extensions;
|
using MediaBrowser.Controller.Configuration;
|
||||||
using MediaBrowser.Controller.Configuration;
|
|
||||||
using MediaBrowser.Controller.IO;
|
using MediaBrowser.Controller.IO;
|
||||||
using MediaBrowser.Controller.Library;
|
using MediaBrowser.Controller.Library;
|
||||||
using MediaBrowser.Controller.Localization;
|
using MediaBrowser.Controller.Localization;
|
||||||
@ -13,7 +12,6 @@ using System.Collections.Generic;
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Runtime.Serialization;
|
using System.Runtime.Serialization;
|
||||||
using System.Text;
|
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
@ -320,9 +318,12 @@ namespace MediaBrowser.Controller.Entities
|
|||||||
|
|
||||||
if (pathInfo == null || !pathInfo.Exists)
|
if (pathInfo == null || !pathInfo.Exists)
|
||||||
{
|
{
|
||||||
|
IsOffline = true;
|
||||||
throw new IOException("Unable to retrieve file system info for " + path);
|
throw new IOException("Unable to retrieve file system info for " + path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
IsOffline = false;
|
||||||
|
|
||||||
var args = new ItemResolveArgs(ConfigurationManager.ApplicationPaths)
|
var args = new ItemResolveArgs(ConfigurationManager.ApplicationPaths)
|
||||||
{
|
{
|
||||||
FileInfo = pathInfo,
|
FileInfo = pathInfo,
|
||||||
@ -331,7 +332,6 @@ namespace MediaBrowser.Controller.Entities
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Gather child folder and files
|
// Gather child folder and files
|
||||||
|
|
||||||
if (args.IsDirectory)
|
if (args.IsDirectory)
|
||||||
{
|
{
|
||||||
var isPhysicalRoot = args.IsPhysicalRoot;
|
var isPhysicalRoot = args.IsPhysicalRoot;
|
||||||
|
@ -635,8 +635,10 @@ namespace MediaBrowser.Controller.Entities
|
|||||||
/// <returns>Task.</returns>
|
/// <returns>Task.</returns>
|
||||||
protected async virtual Task ValidateChildrenInternal(IProgress<double> progress, CancellationToken cancellationToken, bool? recursive = null, bool forceRefreshMetadata = false)
|
protected async virtual Task ValidateChildrenInternal(IProgress<double> progress, CancellationToken cancellationToken, bool? recursive = null, bool forceRefreshMetadata = false)
|
||||||
{
|
{
|
||||||
|
var locationType = LocationType;
|
||||||
|
|
||||||
// Nothing to do here
|
// Nothing to do here
|
||||||
if (LocationType != LocationType.FileSystem)
|
if (locationType == LocationType.Remote || locationType == LocationType.Virtual)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user