Can't login via mobile app

Hello guys!

Nextcloud 11.0.3
Linux raspberrypi 4.1.19-v7+ #858 SMP Tue Mar 15 15:56:00 GMT 2016 armv7l GNU/Linux
Apache/2.4.10 (Raspbian)

I use SSL lets encrypt and domain zone .ml (free).

in browser - well ok.
but login in mobile app - failed :frowning:
log in admin panel - failed login

password check - OK.
why?

Please have a look into your bruteforce table.

You can use phpmyadmin or the terminal:
DON’T FORGET TO MAKE A DATABASE BACKUP!

mysql
USE nextcloud;
SHOW tables;
SELECT * FROM oc_bruteforce_attempts;

Lists the bruteforce entries
For removing rows:

DELETE FROM oc_bruteforce_attempts WHERE IP=“nnn.nnn.nnn.nnn.”;
SELECT * FROM oc_bruteforce_attempts;
exit