@@ -115,17 +115,17 @@ class DkimResult extends HTMLElement {
115
115
throw new Error ( "A DkimResult musst have a result bevor it can be connected." ) ;
116
116
}
117
117
118
- DkimResult . #addTextValue( this . #content, "SDID" , this . result ?. sdid ?? "Unknown" ) ;
119
118
DkimResult . #addTextValue( this . #content, "Result" , this . result ?. result_str ) ;
120
119
DkimResult . #addOptionalWarnings( this . #content, "Warnings" , this . result ?. warnings_str ) ;
120
+ DkimResult . #addTextValue( this . #content, "SDID" , this . result ?. sdid ?? "Unknown" ) ;
121
121
DkimResult . #addOptionalTextValue( this . #content, "AUID" , this . result ?. auid ) ;
122
+ DkimResult . #addOptionalTimeValue( this . #content, "Sign date" , this . result ?. timestamp ) ;
123
+ DkimResult . #addOptionalTimeValue( this . #content, "Expiration date" , this . result ?. expiration ) ;
122
124
let algorithm ;
123
125
if ( this . result ?. algorithmSignature && this . result ?. algorithmHash ) {
124
126
algorithm = `${ this . result ?. algorithmSignature } -${ this . result ?. algorithmHash } ` ;
125
127
}
126
128
DkimResult . #addOptionalTextValue( this . #content, "Algorithm" , algorithm ) ;
127
- DkimResult . #addOptionalTimeValue( this . #content, "Sign date" , this . result ?. timestamp ) ;
128
- DkimResult . #addOptionalTimeValue( this . #content, "Expiration date" , this . result ?. expiration ) ;
129
129
DkimResult . #addOptionalTextValue( this . #content, "Signed headers" , this . result ?. signedHeaders ?. join ( ", " ) ) ;
130
130
}
131
131
0 commit comments