Thank you for the contribution. It has been approved.
Tested with existing github account, it detected a already used one.
The privacy acceptance modal window is not resizeable and that means I can't accept it on an iPhone 5/SE.
With the SMS dsiabled, that means I could not test beyond this:
or was it the end? by editing the html and removing the pesky disable tag, I was able to submit.
unfortunately, it was a fake number in the test so I will not get the code back even if I try now with a good number. Do you have ways to get out of that loop?
You can contact us on Discord.
[utopian-moderator]
Hey @helo,
thank you for testing.
I also just noticed that it doesn't look nice on iphone 5 resolution. So I have to fix that as well.
Exactly. That's how it should be.
SMS is not disabled in test-mode.
The first line checks if TESTNET is activated and if it is - a static phone-number will be used.
let code:any = process.env.REG_TESTNET === 'false' ? await phoneCode.findOne({ user_id: req.body.user_id, code: req.body.code }) : { phone_number: '49123456789', user_id: req.body.user_id }
if(!code) return res.status(400).send({ type: 'not-verified', message: 'Invalid SMS-Code' })
This also means that you can enter any code in TESTNET-mode and it will be correct.