1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-31 11:22:06 +00:00

Fixed: Ignore empty tags when adding items to Flood

(cherry picked from commit 0a5200766ea80fc1c97bfa497cdfed31b9af687f)
This commit is contained in:
Bogdan 2023-12-17 22:09:13 +02:00
parent 990753cff5
commit 3c50bb1330

View file

@ -70,7 +70,7 @@ private static IEnumerable<string> HandleTags(RemoteAlbum remoteAlbum, FloodSett
}
}
return result;
return result.Where(t => t.IsNotNullOrWhiteSpace());
}
public override string Name => "Flood";