-
Notifications
You must be signed in to change notification settings - Fork 18
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
Small login issue #8
Comments
Thanks for pointing this out! Kudos to you. I'll bring out a fix and update you soon. |
Ref, bdac712 Hope that helps. |
That fixes is. Also quick question did you ever have a glitch with the skate-park lines with testing? I made a server side fix when i was messing around with kitsune but I feel like it is my client. |
I did experience it during early stages of production, never experienced it then after |
Must be something with my client then because it still occurs with different server sources. Thanks anyway. |
It could still potentially be a server issue idk, I'll check and confirm later, mainly because I was able to fix it before by tweaking server. I doubt if other sources knew that thing was supposed to be implemented on server. |
@valid22 Sorry to bug you again but is there a reason why EPF features were removed? Was it broken? |
Not broken, I don't see the point of having it :male_shrug: Still it's just disabled, you can tweak some comments to bring it back alive |
Okay thanks |
Hi.
Looks like a small logic error on line 87 of Login.py
87: exist = (yield client.db_penguinExists('username', user)) if user != '$fire' and FIREBASE_INIT else True
This throws error from DB.py as it stills try to login even with an invalid penguin name.
If username !='$fire' and FIREBASE_INIT then is firebase is not initialised we will get 0 on this condition and set exist to true.
Can easily be fixed with:
exist = (yield client.db_penguinExists('username', user)) if (user != '$fire' and FIREBASE_INIT == 0) else True
The text was updated successfully, but these errors were encountered: