|
@@ -714,7 +714,7 @@ public class OCFile implements Parcelable, Comparable<OCFile>, ServerFileInterfa
|
|
* @return 'True' if the file is hidden
|
|
* @return 'True' if the file is hidden
|
|
*/
|
|
*/
|
|
public boolean isHidden() {
|
|
public boolean isHidden() {
|
|
- return getFileName().startsWith(".");
|
|
|
|
|
|
+ return getFileName().charAt(0) == '.';
|
|
}
|
|
}
|
|
|
|
|
|
public String getPermissions() {
|
|
public String getPermissions() {
|