upgrade from dotnet 7 to dotnet 8 (#1529)
* upgrade sdk * fix warnings in ersatztv.ffmpeg * fix warnings in ersatztv.core * fix warnings in ersatztv.infrastructure * fix warnings in ersatztv.application * disable analysis for migrations projects * fix warnings in ersatztv.scanner * fix warnings in ersatztv * upgrade project framework * update github actions and dockerfiles
This commit is contained in:
@@ -813,13 +813,9 @@ public class ElasticSearchIndex : ISearchIndex
|
||||
if (split.Length == 2 && !string.IsNullOrWhiteSpace(split[1]))
|
||||
{
|
||||
string key = split[0];
|
||||
string value = split[1].ToLowerInvariant();
|
||||
if (!result.ContainsKey(key))
|
||||
{
|
||||
result.Add(key, new List<string>());
|
||||
}
|
||||
|
||||
result[key].Add(value);
|
||||
string v2 = split[1].ToLowerInvariant();
|
||||
result.TryAdd(key, new List<string>());
|
||||
result[key].Add(v2);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user