mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-06-24 23:00:41 -04:00
log location.href always
This commit is contained in:
parent
2f6ac120e3
commit
c857647198
1 changed files with 2 additions and 2 deletions
|
@ -199,11 +199,11 @@ var umbraBehaviorFinished = function() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (document.querySelector("div.captcha_interstitial") != null) { // found a captcha
|
if (document.querySelector("div.captcha_interstitial") != null) { // found a captcha
|
||||||
console.log("captcha found");
|
console.log("captcha found for " + location.href);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (document.getElementById("login_form") == null || UMBRA_FB_USER_NAME.indexOf("parameter")>0 || UMBRA_FB_PASSWORD.indexOf("parameter")>0 ) {//check for unset parameters
|
if (document.getElementById("login_form") == null || UMBRA_FB_USER_NAME.indexOf("parameter")>0 || UMBRA_FB_PASSWORD.indexOf("parameter")>0 ) {//check for unset parameters
|
||||||
console.log("missing login_form or login credentials; maybe already logged in?");
|
console.log("missing #login_form or login credentials; maybe already logged in for " + location.href);
|
||||||
var umbraIntervalId = setInterval(umbraIntervalFunc, 200);
|
var umbraIntervalId = setInterval(umbraIntervalFunc, 200);
|
||||||
}
|
}
|
||||||
else {//login
|
else {//login
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue