You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this is the error on quickstart code it always occurs , please also provide option for tinder passport as it comes in premium as also running tinder in two devices location might not change.
Traceback (most recent call last):
File "quickstart.py", line 13, in
session.set_custom_location("Leuven, Belgium")
File "/home/rushabh/Desktop/test-2/TinderBotz/tinderbotz/session.py", line 102, in set_custom_location
"latitude": float(data.get('latt')),
TypeError: float() argument must be a string or a number, not 'NoneType'
The text was updated successfully, but these errors were encountered:
solution
First things first, the issue you mentioned is now fixed, but you'll now have to use latitude and longitude values to set a custom location. For example: session.set_custom_location(latitude=50.879829, longitude=4.700540)
problem
In the previous versions it used to make an api call to convert the location (string) into coordinates (lat and long) but their api seems to be down every now and then. Thus that's where the error messages came from.
feature request
On the premium passport aspect; I had thought of working on that, but my tinder+ subscription ended last week, and haven't planned on renewing it yet. So for now, this feature unfortunately won't be worked on.
this is the error on quickstart code it always occurs , please also provide option for tinder passport as it comes in premium as also running tinder in two devices location might not change.
Traceback (most recent call last):
File "quickstart.py", line 13, in
session.set_custom_location("Leuven, Belgium")
File "/home/rushabh/Desktop/test-2/TinderBotz/tinderbotz/session.py", line 102, in set_custom_location
"latitude": float(data.get('latt')),
TypeError: float() argument must be a string or a number, not 'NoneType'
The text was updated successfully, but these errors were encountered: