Commit b398863a authored by Armando Jagucki's avatar Armando Jagucki Committed by ajagucki

CS-6343: FIX; Unlocking (enabling) a disabled user in Openfire is immediately...

CS-6343: FIX; Unlocking (enabling) a disabled user in Openfire is immediately mapped to Clearspace, but not reflected in Openfire. To be reviewed by Daniel H.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10644 b35dd754-fafc-0310-a699-88a17e54d16e
parent 403fd88f
...@@ -130,7 +130,7 @@ public class LockOutManager { ...@@ -130,7 +130,7 @@ public class LockOutManager {
if (username == null) { if (username == null) {
throw new UnsupportedOperationException("Null username not allowed!"); throw new UnsupportedOperationException("Null username not allowed!");
} }
if (!provider.shouldNotBeCached()) { if (provider.shouldNotBeCached()) {
return provider.getDisabledStatus(username); return provider.getDisabledStatus(username);
} }
LockOutFlag flag = lockOutCache.get(username); LockOutFlag flag = lockOutCache.get(username);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment