Remove referer from XHR

This commit is contained in:
Omar Roth 2019-05-08 09:15:27 -05:00
parent 4616f889fd
commit 37d88d5ff7
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2
1 changed files with 2 additions and 4 deletions

View File

@ -14,8 +14,7 @@ function subscribe(timeouts = 0) {
}
var url = '/subscription_ajax?action_create_subscription_to_channel=1&redirect=false' +
'&c=' + subscribe_data.ucid +
'&referer=' + location.pathname + location.search;
'&c=' + subscribe_data.ucid;
var xhr = new XMLHttpRequest();
xhr.responseType = 'json';
xhr.timeout = 20000;
@ -49,8 +48,7 @@ function unsubscribe(timeouts = 0) {
}
var url = '/subscription_ajax?action_remove_subscriptions=1&redirect=false' +
'&c=' + subscribe_data.ucid +
'&referer=' + location.pathname + location.search;
'&c=' + subscribe_data.ucid;
var xhr = new XMLHttpRequest();
xhr.responseType = 'json';
xhr.timeout = 20000;