hsmeets wrote: 
> 
> > 
Code:
--------------------
  >   > [Log] [09:57:00] JSON REQ: 
["74:da:38:1a:af:62",["qobuz","items",0,25000,"menu:qobuz","isContextMenu:1","item_id:0_Bach_Bach.0.0","search:Bach","cachesearch:1"]]
 (material.min.js, line 239)
--------------------
> > 

Hmmm... I'm thinking it's the -"search:Bach","cachesearch:1"- which
probably come from the previous request (parameters are not modified, so
"item_id:" is what it is). Can you try the following:

1. Navigate into Material to just before you would click on the item
which fails
2. Open your browser's developer tools
3. Go to console tab in developer tools
4. Type:

Code:
--------------------
    
  allow pasting;
  
--------------------

5. Now paste the following:

Code:
--------------------
    
  lmsList("74:da:38:1a:af:62", ["qobuz", "items"], ["isContextMenu:1", 
"item_id:0_Bach_Bach.0.0"]).then(({data}) => {
  console.log(JSON.stringify(data));
  });
  
--------------------


...this should do your above command but without
-"search:Bach","cachesearch:1"- Does that produce some text that has
items you would expect?



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
(Use http: //SERVER:9000/material/?debug=json,cometd to also see update
messages, e.g. play queue) 2. Open browser's developer tools 3. Open
console tab in developer tools 4. REQ/RESP messages sent to/from LMS
will be logged here.
------------------------------------------------------------------------
cpd73's Profile: http://forums.slimdevices.com/member.php?userid=66686
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

_______________________________________________
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to