mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-28 16:55:32 +00:00
BUGFIX: notbefore/notafter case sensitive
This commit is contained in:
@@ -33,8 +33,8 @@ namespace HaDocument.Models {
|
|||||||
public AdditionalDates? AdditionalDates { get; } = null;
|
public AdditionalDates? AdditionalDates { get; } = null;
|
||||||
public int Order { get; } = -1;
|
public int Order { get; } = -1;
|
||||||
public string Location { get; } = "";
|
public string Location { get; } = "";
|
||||||
public List<string> Senders { get; } = null;
|
public List<string>? Senders { get; } = null;
|
||||||
public List<string> Receivers { get; } = null;
|
public List<string>? Receivers { get; } = null;
|
||||||
public bool? hasOriginal { get; }
|
public bool? hasOriginal { get; }
|
||||||
public bool? isProofread { get; }
|
public bool? isProofread { get; }
|
||||||
public bool? isDraft { get; }
|
public bool? isDraft { get; }
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ namespace HaDocument.Reactors {
|
|||||||
Order = res2;
|
Order = res2;
|
||||||
|
|
||||||
AdditionalDates = new AdditionalDates(
|
AdditionalDates = new AdditionalDates(
|
||||||
GetDateTime(tag["notBefore"]),
|
GetDateTime(tag["notbefore"]),
|
||||||
GetDateTime(tag["notAfter"]),
|
GetDateTime(tag["notafter"]),
|
||||||
GetDateTime(tag["from"]),
|
GetDateTime(tag["from"]),
|
||||||
GetDateTime(tag["to"]),
|
GetDateTime(tag["to"]),
|
||||||
tag["cert"]
|
tag["cert"]
|
||||||
|
|||||||
Reference in New Issue
Block a user