Skip to content
Snippets Groups Projects
Commit 69d1c710 authored by Nathan Letwory's avatar Nathan Letwory
Browse files

Don't lower() the username, only strip() it.

parent 4b0c0a5b
No related branches found
No related tags found
No related merge requests found
......@@ -1094,7 +1094,7 @@ class ORE_LoginOp(bpy.types.Operator):
ore = sce.ore_render
ore.password = ore.password.strip()
ore.username = ore.username.strip().lower()
ore.username = ore.username.strip()
if ore.hash=='':
if ore.password != '' and ore.username != '':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment