Update to Release 18.
Some checks failed
🚀 Pack skyscraper8 / make-zip (push) Failing after 1m42s

This commit is contained in:
feyris-tan 2026-03-25 21:35:28 +01:00
parent f605eb33c8
commit fe672a54f9
2 changed files with 9 additions and 2 deletions

View File

@ -1928,9 +1928,16 @@ namespace skyscraper5.Skyscraper.Scraper.Storage.InMemory
tims[key] = currentTim;
}
private Dictionary<string, Tuple<UpdateNotificationGroup, UpdateNotificationTarget>> knownUnts;
public void StoreUpdateNotification2(UpdateNotificationGroup common, UpdateNotificationTarget target)
{
throw new NotImplementedException();
if (knownUnts == null)
knownUnts = new Dictionary<string, Tuple<UpdateNotificationGroup, UpdateNotificationTarget>>();
if (knownUnts.ContainsKey(common.Oui))
return;
knownUnts[common.Oui] = new Tuple<UpdateNotificationGroup, UpdateNotificationTarget>(common, target);
}
}
}

View File

@ -4,7 +4,7 @@ namespace skyscraper8;
public class VersionInfo
{
private const int PUBLIC_RELEASE = 17;
private const int PUBLIC_RELEASE = 18;
public static int GetPublicReleaseNumber()
{