Fix one test.
Some checks failed
🚀 Pack skyscraper8 / make-zip (push) Failing after 34s

This commit is contained in:
Fey 2026-05-12 06:12:26 +02:00
parent 0a0d1e4afb
commit a318b0e429

View File

@ -119,6 +119,11 @@ namespace skyscraper5.Skyscraper.Scraper.Storage.InMemory
{
bool result = false;
NitNetwork r = nitNetworks[l.NetworkId];
if (r == null)
{
StoreNitNetwork(l);
return true;
}
if (string.IsNullOrEmpty(r.Name) && !string.IsNullOrEmpty(l.Name))
{