Skip to content

Commit

Permalink
Disable the cache for GM.xmlHttpRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
DBX12 committed Feb 24, 2021
1 parent dbcb1ec commit a297a38
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bitbucket-show-approvers.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
headers: {
"Authorization": "Basic " + btoa(settings.bb_username + ':' + settings.bb_appPassword)
},
nocache: true,
onreadystatechange: function (response) {
if (response.readyState === 4) {
let json = JSON.parse(response.responseText);
Expand Down Expand Up @@ -95,6 +96,7 @@
headers: {
"Authorization": "Basic " + btoa(settings.bb_username + ':' + settings.bb_appPassword)
},
nocache: true,
onreadystatechange: function (response) {
if (response.readyState === 4) {
let json = JSON.parse(response.responseText);
Expand Down

0 comments on commit a297a38

Please sign in to comment.