quickly skip missing files during plex library scan (#251)

This commit is contained in:
Jason Dove
2021-06-07 20:34:24 -05:00
committed by GitHub
parent cec5a09839
commit da5148affd
6 changed files with 105 additions and 23 deletions
@@ -1,9 +1,12 @@
using System.Threading.Tasks;
using System.Collections.Generic;
using System.Threading.Tasks;
using ErsatzTV.Core.Domain;
namespace ErsatzTV.Core.Interfaces.Plex
{
public interface IPlexPathReplacementService
{
Task<string> GetReplacementPlexPath(int libraryPathId, string path);
string GetReplacementPlexPath(List<PlexPathReplacement> pathReplacements, string path, bool log = true);
}
}