mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
add master changes
This commit is contained in:
parent
32cec257ba
commit
4c5ea9070f
@ -149,7 +149,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
||||
|
||||
if (item != null)
|
||||
{
|
||||
_logger.Debug("Cleaning item {0} type: {1} path: {2}", item.Name, item.GetType().Name, item.Path ?? string.Empty);
|
||||
_logger.Info("Cleaning item {0} type: {1} path: {2}", item.Name, item.GetType().Name, item.Path ?? string.Empty);
|
||||
|
||||
await _libraryManager.DeleteItem(item, new DeleteOptions
|
||||
{
|
||||
@ -170,7 +170,6 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
||||
{
|
||||
var result = _itemRepo.GetItemIdsWithPath(new InternalItemsQuery
|
||||
{
|
||||
IsOffline = false,
|
||||
LocationType = LocationType.FileSystem,
|
||||
//Limit = limit,
|
||||
|
||||
@ -214,6 +213,8 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
||||
continue;
|
||||
}
|
||||
|
||||
_logger.Info("Deleting item from database {0} because path no longer exists. type: {1} path: {2}", libraryItem.Name, libraryItem.GetType().Name, libraryItem.Path ?? string.Empty);
|
||||
|
||||
await _libraryManager.DeleteItem(libraryItem, new DeleteOptions
|
||||
{
|
||||
DeleteFileLocation = false
|
||||
|
Loading…
Reference in New Issue
Block a user