Loading src/com/cyanogenmod/explorer/ui/dialogs/FsoPropertiesDialog.java +10 −2 Original line number Diff line number Diff line Loading @@ -362,8 +362,16 @@ public class FsoPropertiesDialog */ private void computeFolderUsage() { try { if (this.mFso instanceof Symlink && ((Symlink) this.mFso).getLinkRef() != null) { this.mFolderUsageExecutable = CommandHelper.getFolderUsage(this.mContext, this.mFso.getFullPath(), this, null); CommandHelper.getFolderUsage( this.mContext, ((Symlink) this.mFso).getLinkRef().getFullPath(), this, null); } else { this.mFolderUsageExecutable = CommandHelper.getFolderUsage( this.mContext, this.mFso.getFullPath(), this, null); } } catch (Exception cause) { //Capture the exception ExceptionUtil.translateException(this.mContext, cause, true, false); Loading Loading
src/com/cyanogenmod/explorer/ui/dialogs/FsoPropertiesDialog.java +10 −2 Original line number Diff line number Diff line Loading @@ -362,8 +362,16 @@ public class FsoPropertiesDialog */ private void computeFolderUsage() { try { if (this.mFso instanceof Symlink && ((Symlink) this.mFso).getLinkRef() != null) { this.mFolderUsageExecutable = CommandHelper.getFolderUsage(this.mContext, this.mFso.getFullPath(), this, null); CommandHelper.getFolderUsage( this.mContext, ((Symlink) this.mFso).getLinkRef().getFullPath(), this, null); } else { this.mFolderUsageExecutable = CommandHelper.getFolderUsage( this.mContext, this.mFso.getFullPath(), this, null); } } catch (Exception cause) { //Capture the exception ExceptionUtil.translateException(this.mContext, cause, true, false); Loading