mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-19 01:17:18 +00:00
fixed bug with undefined size on root directory of Cloud Commander
This commit is contained in:
parent
01f7111f22
commit
95c30b481a
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