This commit is contained in:
parent
f605eb33c8
commit
fe672a54f9
@ -1928,9 +1928,16 @@ namespace skyscraper5.Skyscraper.Scraper.Storage.InMemory
|
|||||||
tims[key] = currentTim;
|
tims[key] = currentTim;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private Dictionary<string, Tuple<UpdateNotificationGroup, UpdateNotificationTarget>> knownUnts;
|
||||||
public void StoreUpdateNotification2(UpdateNotificationGroup common, UpdateNotificationTarget target)
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -4,7 +4,7 @@ namespace skyscraper8;
|
|||||||
|
|
||||||
public class VersionInfo
|
public class VersionInfo
|
||||||
{
|
{
|
||||||
private const int PUBLIC_RELEASE = 17;
|
private const int PUBLIC_RELEASE = 18;
|
||||||
|
|
||||||
public static int GetPublicReleaseNumber()
|
public static int GetPublicReleaseNumber()
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user