Skip to content

Commit

Permalink
Code removed as will be receiving from NC.
Browse files Browse the repository at this point in the history
  • Loading branch information
surinder-tsys committed May 5, 2023
1 parent c0ebe97 commit 5e09f90
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ public void resetOwnCloudAccount() {
@Override
public boolean accountOwnsFile(OCFile file, Account account) {
final String ownerId = file.getOwnerId();
return TextUtils.isEmpty(ownerId) || account.name.split("@")[0].equalsIgnoreCase(ownerId);
return TextUtils.isEmpty(ownerId) || account.name.split("@")[0].equals(ownerId);
}

@Override
Expand Down

0 comments on commit 5e09f90

Please sign in to comment.