From fe672a54f9e69d5eca99b628a9ad4c89a01d581f Mon Sep 17 00:00:00 2001 From: feyris-tan <4116042+feyris-tan@users.noreply.github.com> Date: Wed, 25 Mar 2026 21:35:28 +0100 Subject: [PATCH] Update to Release 18. --- .../Scraper/Storage/InMemory/InMemoryScraperStorage.cs | 9 ++++++++- skyscraper8/VersionInfo.cs | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/skyscraper8/Skyscraper/Scraper/Storage/InMemory/InMemoryScraperStorage.cs b/skyscraper8/Skyscraper/Scraper/Storage/InMemory/InMemoryScraperStorage.cs index a65711c..f0bdad5 100644 --- a/skyscraper8/Skyscraper/Scraper/Storage/InMemory/InMemoryScraperStorage.cs +++ b/skyscraper8/Skyscraper/Scraper/Storage/InMemory/InMemoryScraperStorage.cs @@ -1928,9 +1928,16 @@ namespace skyscraper5.Skyscraper.Scraper.Storage.InMemory tims[key] = currentTim; } + private Dictionary> knownUnts; public void StoreUpdateNotification2(UpdateNotificationGroup common, UpdateNotificationTarget target) { - throw new NotImplementedException(); + if (knownUnts == null) + knownUnts = new Dictionary>(); + + if (knownUnts.ContainsKey(common.Oui)) + return; + + knownUnts[common.Oui] = new Tuple(common, target); } } } diff --git a/skyscraper8/VersionInfo.cs b/skyscraper8/VersionInfo.cs index e968496..d1b953c 100644 --- a/skyscraper8/VersionInfo.cs +++ b/skyscraper8/VersionInfo.cs @@ -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() {