This commit is contained in:
2021-08-09 19:45:09 +00:00
parent 726152780e
commit d16468d44b
3 changed files with 28 additions and 2 deletions

View File

@@ -163,6 +163,7 @@ namespace AyaNova.PlugIn.V8
return;
}
ExportAssignedDocs = dOpt.ExportAssignedDocs;
ImportTag = dOpt.Tags;
//here because we logged in fine and can proceed
//MessageBox.Show("Login successful! JWT is " + util.JWT);
@@ -236,9 +237,9 @@ namespace AyaNova.PlugIn.V8
private Dictionary<Guid, string> TagMap = new Dictionary<Guid, string>();
private Dictionary<string, long> LocaleMap = new Dictionary<string, long>();
private string ImportTag = "v7-import";
private string ImportTag = string.Empty;
private static void AddImportTag(List<string> tags){
private void AddImportTag(List<string> tags){
if(!string.IsNullOrWhiteSpace(ImportTag))
tags.Add(ImportTag);
}