Ah, okay.
It freaked me out and I ended up changing my password, lol.
Posted under General
This topic has been locked.
nanami said:
Anybody getting this error while trying to upload from NicoNico Seiga?
error: Resolv::ResolvError - no address for lohas.nicoseiga.jphttpsWas forced to upload using the lohas address instead of the image page URL.
I'm getting a no address for lohas.nicoseiga.jphttps
error instead, worked around it by using the direct image link.
nanami said:
Anybody getting this error while trying to upload from NicoNico Seiga?
error: Resolv::ResolvError - no address for lohas.nicoseiga.jphttpsWas forced to upload using the lohas address instead of the image page URL.
Unbreakable said:
I'm getting a
no address for lohas.nicoseiga.jphttps
error instead, worked around it by using the direct image link.
This is fixed in the code but not deployed yet.
I tried to search for
order:pool_count
order:pools
order:pools_asc
but only got the "something broke" page. Was it removed?
Guaro1238 said:
I tried to search for
order:pool_count
order:pools
order:pools_ascbut only got the "something broke" page. Was it removed?
That page just means that the query reached timeout. Try dividing the search into age or ID, example: order:pool_count id:2000000..3000000
Full changelog: https://github.com/danbooru/danbooru/compare/production-2020.06.03-043848-utc...production-2020.06.17-063517-utc
evazion said:
- Fixed admins not being able to upload videos more than two minutes long (topic #14647).
Hey, thanks for fixing this!
I'm not sure if this is the right place for this, but is anyone else having issues when on mobile where the link to see the full sized image doesn't work? I have to long press and click open in new tab to get the full size images to load now.
Edit: Found a workaround in settings to just have all images load at full resolution, but it may still be an issue for others.
Updated
Would it be possible to have a meta tag qualifier for, say, family:any/none
? I would like to filter out posts with no parents or children so I don't have to keep checking said posts for the best version (it's not always the parent), and while child:none parent:none achieves that, you can't get the reverse. If you want check non-family posts and then family posts, you'd have to see the parents separate from their children, making browsing more difficult.
The backend can use the conditionals that the child and parent qualifiers use, or if not, then WHERE parent_id IS NOT NULL OR has_children = true
/ WHERE parent_id IS NULL AND has_children = false
.
Updated
EMUltra3 said:
Would it be possible to have a meta tag qualifier for, say,
family:any/none
?
If OR'ing metatags is a possibility, then the family:any
that you want to achieve could be done with a ~parent:any ~child:any search. Right now that isn't supported (and I'm not sure if it's possible), but going forward that may be the best solution to avoid creating a whole bunch of new metatags for various scenarios.
BrokenEagle98 said:
If OR'ing metatags is a possibility, then the
family:any
that you want to achieve could be done with a ~parent:any ~child:any search. Right now that isn't supported (and I'm not sure if it's possible), but going forward that may be the best solution to avoid creating a whole bunch of new metatags for various scenarios.
This is on the roadmap. It's doable but the search parser will need to be rewritten to allow for it.