Skip to content

Commit 16ccebe

Browse files
committed
Merge pull request #21 from andyburke/fix_explicit_path
Fix explicit path, again
2 parents 943562d + 37eb764 commit 16ccebe

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cookiejar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
if (this.path && access_info.path.indexOf(this.path) !== 0) {
134134
return false;
135135
}
136-
if (this.explicit_path && this.path !== access_info.path) {
136+
if (this.explicit_path && access_info.path.indexOf( this.path ) !== 0) {
137137
return false;
138138
}
139139
var access_domain = access_info.domain && access_info.domain.replace(/^[\.]/,'');

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cookiejar",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"author": {
55
"name": "bradleymeck"
66
},

0 commit comments

Comments
 (0)