Remove referer from XHR

pull/530/head
Omar Roth 5 years ago
parent 4616f889fd
commit 37d88d5ff7
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2

@ -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;

Loading…
Cancel
Save