We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The startup lock 🔒 present in the settings does not work on Linux OS's but works perfectly on Windows
Everything works as expected but the password does not match in Linux. So it becomes unusable (the whole app)
The problem might occur because of some character encoding. The character encoding is different on Linux & Windows. So this might cause the problem.
To fix this I have thought 💭 to fix this by separating codes for windows and linux using #ifdef __unix__
#ifdef __unix__
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The startup lock 🔒 present in the settings does not work on Linux OS's but works perfectly on Windows
Problem
Everything works as expected but the password does not match in Linux. So it becomes unusable (the whole app)
Possible cause
The problem might occur because of some character encoding. The character encoding is different on Linux & Windows.
So this might cause the problem.
Thought way to fix
To fix this I have thought 💭 to fix this by separating codes for windows and linux using
#ifdef __unix__
The text was updated successfully, but these errors were encountered: