Open Meiserj opened 1 year ago
I've reported this for a while but I think the developer is busy at the moment. I'm also seeing a lot of random profiles show up in the like list which are erroneous - sometimes the profiles show up straight after in the card view but do not produce a match so the likes shown by the scrips were clearly not valid.
It also looks like there's no way to match someone once clicking the deblurred like button.
So, until this is solved, I just do as I did before this feature was introduced : I reject everyone until the app presents me the one who's picture matches the deblurred one.
Can confirm - only deblur works. Tested on various machines and devices.
Yea it is unfortunate that the liking feature doesn't work anymore. At least the deblur still works, but if the dev comes back and fixes it, that would be godsend
Hi, Any news ? Thanks
The project started as a simple wrapper around a javascript function posted on Reddit. I gained way more traction than I anticipated and I couldn't keep up as well and fast as I should have. What didn't help, was Tinder patching the exploited bug and later changing both API and frontend's identifiers. With me not on Tinder anymore, I am not able to test possible changes and/or find new exploits.
I am accepting any PRs I get and will do so until the project is archived. If you, the reader, are willing to take over the project, please, let me know.
If something isn't working, sometimes there's newer version available on the
develop
branch. To try it, click this link. Once there's a newer stable version, your userscript extension should update you automatically to it.
I found a way to recover the hidden profiles when clicking the buttons. I just edited the script and commented the this.hidden = !!localStorage.getItem('hiddenUsers')?.includes(userId);
line.
I found a way to recover the hidden profiles when clicking the buttons. I just edited the script and commented the
this.hidden = !!localStorage.getItem('hiddenUsers')?.includes(userId);
line.
Sorry for bothering you but I can't seem to make it work, can you be a bit more precise about what to write in the code? (I'm fairly new to coding)
Thanks in advance!
I found a way to recover the hidden profiles when clicking the buttons. I just edited the script and commented the
this.hidden = !!localStorage.getItem('hiddenUsers')?.includes(userId);
line.Sorry for bothering you but I can't seem to make it work, can you be a bit more precise about what to write in the code? (I'm fairly new to coding)
Thanks in advance!
Okay so to comment on a line of script, all you need to do is add "/" or "//" at the beginning of the targeted line. So for example you'd want to edit the line of scripted mentioned into this /this.hidden = !!localStorage.getItem('hiddenUsers')?.includes(userId);
or into this //this.hidden = !!localStorage.getItem('hiddenUsers')?.includes(userId);
. This small edit essentially recovered the profiles I tried to like, but disappeared. However, I do not know if you are now able to actually like the profiles. Feedback on that issue is appreciated.
I've used the extension before and it always worked. I can still deblur pictures, however now when I use the like button, it deletes the person from the preview, but the like does not go through. Looking at network analysis I found the following out: https://api.gotinder.com/like/u/ is called twice. Once with fetch, once with post.
The fetch returns 204 (no data) and the post returns 404 (not found).
Maybe they changed the API or something? I tried the dev version of the script aswell, but same issue.