Skip to content

Commit

Permalink
Fix wrong view name
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Jul 16, 2024
1 parent 91047ef commit 4d41375
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public FileAttributes(@Nonnull Path path, boolean followLinks) throws IOExceptio
}
this.userName = name;
} else if (views.contains("owner")) {
this.userName = getPrincipalName(path, "unix:owner");
this.userName = getPrincipalName(path, "owner:owner");
} else {
this.userName = null;
}
Expand Down

0 comments on commit 4d41375

Please sign in to comment.