mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
fixed bug with length that equal to SHORTNAMELENGTH (current folder did not set up correctly)
This commit is contained in:
parent
c9eb3861d1
commit
e545e73138
1 changed files with 1 additions and 1 deletions
|
|
@ -284,7 +284,7 @@ CloudClient._currentToParent = (function(pDirName){
|
|||
/* if name length is big
|
||||
* then compare full names
|
||||
*/
|
||||
if(pDirName.length >= CloudFunc.SHORTNAMELENGTH &&
|
||||
if(pDirName.length > CloudFunc.SHORTNAMELENGTH &&
|
||||
lA[0].title !== pDirName)
|
||||
continue;
|
||||
/* если уже выделен какой-то файл, снимаем
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue