This commit is contained in:
Rodrigo Fraga 2020-03-11 23:50:20 -04:00
Родитель 642a463036
Коммит 23f0c23b73
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -1,6 +1,7 @@
using CsvHelper;
using LCS.Cache;
using LCS.JsonObjects;
using LCS.Properties;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
@ -1393,7 +1394,7 @@ namespace LCS.Forms
private void LoadFromCredentialsStore()
{
if(Properties.Settings.Default.keepCache)
if(Settings.Default.keepCache)
{
CredentialsCacheHelper.LoadOffLineCredentials();
}
@ -1406,7 +1407,7 @@ namespace LCS.Forms
private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
{
if(Properties.Settings.Default.keepCache)
if(Settings.Default.keepCache)
{
CredentialsCacheHelper.SaveCredentialsOffline();
}