Skip to content

Commit

Permalink
remove header auth
Browse files Browse the repository at this point in the history
  • Loading branch information
birm committed Mar 28, 2019
1 parent eddc345 commit ccb63b9
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions package/pathdb_package.js
Expand Up @@ -57,9 +57,6 @@ function PathDbMods() {
}
let bySlide = fetch(url + "?" + objToParamStr(query), {
credentials: "same-origin",
headers: {
'Authorization': this.auth
},
mode: "cors"
}).then(this.errorHandler).then(x => this.filterBroken(x, "mark"))
return bySlide
Expand Down Expand Up @@ -104,9 +101,6 @@ function PathDbMods() {
}
let bySlide = fetch(url + "?" + objToParamStr(query), {
credentials: "same-origin",
headers: {
'Authorization': this.auth
},
mode: "cors"
}).then(this.errorHandler).then(x => this.filterBroken(x, "mark"))
return bySlide
Expand All @@ -124,9 +118,6 @@ function PathDbMods() {
}
let bySlide = fetch(url + "?" + objToParamStr(query), {
credentials: "same-origin",
headers: {
'Authorization': this.auth
},
mode: "cors"
}).then(this.errorHandler)
return bySlide
Expand Down

0 comments on commit ccb63b9

Please sign in to comment.