Skip to content

Commit

Permalink
#259 incorrect personal domain limit check
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Avetisyan committed Sep 28, 2017
1 parent 3511c24 commit 4b7bb3a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1051,7 +1051,7 @@ boolean hasExceededVirtualSubDomainLimit(String domain) {
// not to match other users who have the same prefix

String userDomainCheck = null;
int idx = domain.indexOf(".", userDomainPrefix.length());
int idx = domain.indexOf(".", homeDomainPrefix.length());
if (idx == -1) {
userDomainCheck = domain + ".";
} else {
Expand Down

0 comments on commit 4b7bb3a

Please sign in to comment.