diff --git a/Qwilight/JSON.cs b/Qwilight/JSON.cs index 72a90b6..1cc4240 100644 --- a/Qwilight/JSON.cs +++ b/Qwilight/JSON.cs @@ -155,14 +155,14 @@ { public string date; #if X64 - [JsonPropertyName("hashX64")] + [JsonPropertyName("hashAMD64")] #endif #if ARM64 [JsonPropertyName("hashARM64")] #endif public string hash; #if X64 - [JsonPropertyName("titleX64")] + [JsonPropertyName("titleAMD64")] #endif #if ARM64 [JsonPropertyName("titleARM64")] diff --git a/Qwilight/System/NotifySystem.cs b/Qwilight/System/NotifySystem.cs index feffbfe..385efa0 100644 --- a/Qwilight/System/NotifySystem.cs +++ b/Qwilight/System/NotifySystem.cs @@ -35,11 +35,11 @@ { var isNew = defaultNotifyItem.IsNew; defaultNotifyItem.IsNew = false; - return defaultNotifyItem.IsNew; + return isNew; }); if (defaultNotifyCount > 0) { - Notify(NotifyVariety.Info, NotifyConfigure.NotSave, string.Format(LanguageSystem.Instance.WaitingDefaultNotifyContents, defaultNotifyCount), false, null, () => + Notify(NotifyVariety.Info, NotifyConfigure.Default, string.Format(LanguageSystem.Instance.WaitingDefaultNotifyContents, defaultNotifyCount), false, null, () => { ViewModels.Instance.NotifyValue.TabPosition = 0; ViewModels.Instance.NotifyValue.Open(); @@ -53,11 +53,11 @@ { var isNew = passNotifyItem.IsNew; passNotifyItem.IsNew = false; - return passNotifyItem.IsNew; + return isNew; }); if (passNotifyCount > 0) { - Notify(NotifyVariety.Info, NotifyConfigure.NotSave, string.Format(LanguageSystem.Instance.WaitingPassNotifyContents, passNotifyCount), false, null, () => + Notify(NotifyVariety.Info, NotifyConfigure.Default, string.Format(LanguageSystem.Instance.WaitingPassNotifyContents, passNotifyCount), false, null, () => { ViewModels.Instance.NotifyValue.TabPosition = 2; ViewModels.Instance.NotifyValue.Open();