tinder-deblur icon indicating copy to clipboard operation
tinder-deblur copied to clipboard

Liking deblured pictures does not work anymore

Open Meiserj opened this issue 1 year ago • 9 comments

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/<some_id> 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.

Meiserj avatar Jul 22 '23 14:07 Meiserj

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.

mtt0909 avatar Jul 25 '23 01:07 mtt0909

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.

KaKi87 avatar Jul 28 '23 15:07 KaKi87

Can confirm - only deblur works. Tested on various machines and devices.

andreglud avatar Aug 18 '23 08:08 andreglud

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

varkem avatar Aug 28 '23 22:08 varkem

Hi, Any news ? Thanks

KaKi87 avatar Oct 14 '23 20:10 KaKi87

⚠️UPDATE⚠️

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.

tajnymag avatar Nov 06 '23 13:11 tajnymag

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.

MrNoino avatar Dec 23 '23 23:12 MrNoino

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!

Martin824S avatar Jan 29 '24 17:01 Martin824S

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.

ayy-lmao1 avatar Feb 17 '24 06:02 ayy-lmao1