We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9910a08 commit 4b0d069Copy full SHA for 4b0d069
app/src/main/java/com/nextcloud/client/account/UserAccountManagerImpl.java
@@ -342,7 +342,7 @@ public void resetOwnCloudAccount() {
342
@Override
343
public boolean accountOwnsFile(OCFile file, Account account) {
344
final String ownerId = file.getOwnerId();
345
- return TextUtils.isEmpty(ownerId) || account.name.split("@")[0].equalsIgnoreCase(ownerId);
+ return TextUtils.isEmpty(ownerId) || account.name.split("@")[0].equals(ownerId);
346
}
347
348
0 commit comments