mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
fixed bug with undefined size on root directory of Cloud Commander
This commit is contained in:
parent
9f35478128
commit
a575321084
1 changed files with 1 additions and 1 deletions
|
|
@ -159,7 +159,7 @@ CloudFunc.convertPermissionsToNumberic= function(pPerm_s){
|
|||
*/
|
||||
CloudFunc.getShortedSize=function(pSize){
|
||||
/* if pSize=0 - return it */
|
||||
if(!pSize)return pSize;
|
||||
if(!pSize || (pSize != pSize-0))return pSize;
|
||||
|
||||
/* Константы размеров, что используются
|
||||
* внутри функции
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue