File tree 3 files changed +11
-2
lines changed
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8
8
9
9
Nothing
10
10
11
+ ## v1.3.2 - 2019-03-28
12
+
13
+ ### Fixed
14
+
15
+ - Something changed underneath me, and now Firefox seems to preserve the
16
+ CaPiTaLiZaTiOn of header names instead of lowering them. We weren't finding
17
+ the X-SAT-Sig header because we were looking for x-sat-sig. Fix this by
18
+ .toLowerCase()-ing the header from Firefox.
19
+
11
20
## v1.3.1 - 2019-03-05
12
21
13
22
### Changed
Original file line number Diff line number Diff line change 1
1
function _getHeader ( headers , name ) {
2
2
for ( let header of headers ) {
3
- if ( header . name == name . toLowerCase ( ) ) {
3
+ if ( header . name . toLowerCase ( ) == name . toLowerCase ( ) ) {
4
4
return header . value ;
5
5
}
6
6
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"manifest_version" : 2 ,
3
3
"name" : " SAT Domain Tools" ,
4
- "version" : " 1.3.1 " ,
4
+ "version" : " 1.3.2 " ,
5
5
"description" : " Self-authenticating Traditional domains weave self-authentication into the web" ,
6
6
"browser_specific_settings" : {
7
7
"gecko" : {
You can’t perform that action at this time.
0 commit comments