Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple issues #116

Open
biodude711 opened this issue Mar 11, 2020 · 5 comments
Open

Multiple issues #116

biodude711 opened this issue Mar 11, 2020 · 5 comments

Comments

@biodude711
Copy link

I keep getting "Error checking account settings (HTML Code: 404 Not Found)" popping up on every page.

Also, a minor issue is that whenever I am using the script and I disable one (or all) of my blacklists, I there is no line striking through the blacklist that signifies that it is disabled or not.

@tv1mdb
Copy link

tv1mdb commented Mar 28, 2020

Same problem, also getting a Post content could not be located. error and translations do not appear .

Deleting the following code fixed the problem at least for now (if you can call code amputation a fix).
else if (mode === "account_check") { url = "/users/" + optArg + "/edit"; fetchPages(url, "account_check"); }
lines from 1262 to 1266

@worldendDominator
Copy link

I've noticed "post content" message and missing translations since recently, and more:

  • Opening any post displays warnings like those I get if I upload a post without artist and copyright tags.
  • Posts with children display an additional parent/children chart under the regular one.
  • (this one's old) Sometimes, I'm not sure when exactly, after adding a note, any click anywhere on the page will create a copy of that note, making further translation impossible.

@Eankun
Copy link

Eankun commented Apr 1, 2020

Same problem, also getting a Post content could not be located. error and translations do not appear .

Deleting the following code fixed the problem at least for now (if you can call code amputation a fix).
else if (mode === "account_check") { url = "/users/" + optArg + "/edit"; fetchPages(url, "account_check"); }
lines from 1262 to 1266

It helps with error message (which you can disable by just removing error message in the code) but doesn't fix translations not appearing. Personally I just added
// @exclude *://*.donmai.us/posts/*
to the script.

@nonamethanks
Copy link

The issue is mainly that last month danbooru changed all note-container and image-container selectors from ids to classes, so to make this work you have to replace the selectors to the correct one.
For example:
https://github.com/pseudonymous/better-better-booru/blob/master/better-better-booru.user.js#L220
has to be replaced with
var imgContainer = document.getElementsByClassName("image-container")[0];
This has to be done for all note-container and image-container selections in the code, and once done the script should keep working for a while, though I wouldn't rely on it if it remains abandoned.

@ShamisenAGNA
Copy link

Everything posted here thus far seems to work as band aids for the time being.

I've also run into the problem of both the alternate image swap hasn't been working, where the full sized image will swap in if you click the image you're viewing, as well as the post drag scrolling option also not working despite both the options being toggled on and no error messages popping up. Any idea if it's possible to get those back up and running?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants