goindex-extended icon indicating copy to clipboard operation
goindex-extended copied to clipboard

Second Drive not listing files.

Open ZeroCool22 opened this issue 2 years ago • 0 comments

// =================== ROOTS ===================
  "roots": [
    {
      id: "***", //you can use folderid other than root but then search wont work
      name: "zzz",

      /* provide 'username':'password' combinations seperated by commas. 
       * If you add empty values like this => auth":{"":""} then the site will still ask for authentication but user can enter without entering any data by clicking submit
       */

      // To enable password protection, uncomment the below code line(remove "//" in the front of the below code line)
      auth: {'xxx' : 'xxx'},
      protect_file_link: false //true or false
    },
    {
      id: "***",
      name: "xxx",
      // To enable password protection, uncomment the below line
      auth: {'xxx' : 'xxx'},
      protect_file_link: false
    },
    // You can add more drives like above

First Drive "zzz" listing files correctly.

But Second Drive "xxx" not listing at all.

What could be the problem?

PD: *** are for protecting the ral ID in this post, I have written the correct ID's on the config.

ZeroCool22 avatar May 14 '22 05:05 ZeroCool22