Phileas wrote: 
> Unfortunately, I know a rescan won't fix the menus because I've tried
> that several times.
You could try installing the "Database Query" Plugin and restart LMS.  I
believe this plugin is still free.

The go to Extras, Database Query, select "Free form query" and "edit". 
Type 

Code:
--------------------
    
  SELECT * from multilibrary_libraries;
  
--------------------

And "Save and Execute". You should get:

Code:
--------------------
    
  id    libraryid       name
  1     classical       Classical Music   
  2     standard        Standard Music   
  
--------------------

It is my bet that you will get something different.  If you do, then
re-edit the query to contain::

Code:
--------------------
    
  UPDATE multilibrary_libraries set id = 102 where libraryid = 'classical';
  UPDATE multilibrary_libraries set id = 101 where libraryid = 'standard';
  UPDATE multilibrary_libraries set id = 2 where libraryid = 'standard';
  UPDATE multilibrary_libraries set id = 1 where libraryid = 'classical';
  SELECT * from multilibrary_libraries;
  
--------------------

(The 1st 2 updates just move the 2 ids to new numbers so that setting
them back to 1 and 2 doesn't cause a conflict).
The last line checks the values are now what you need.

Try the menus, if they work, fine. If not, do a full rescan and see if
it's OK now.



LMS 7.9 on VortexBox Midi box, Xubuntu 16.04, FLACs 16->24 bit,
44.1->192kbps. 
LMS plugin UPnP/DLNA Bridge to MF M1 CLiC (to A308CR amp & ESLs) &
Marantz CR603 UPnP renderers.  
Alternatively Minimserver & Upplay to same & to upmpdcli/mpd PC
renderers.  
Squeezelite to Meridian USB Explorer DAC to PC speakers/headphones.  
Wireless Xubuntu 16.04 laptop firefox/upplay or Android 'phone with
Squeeze-Commander/BubbleUPnP controls LMS/Minimserver.  
Also a Touch with EDO, plus spare, unused.
------------------------------------------------------------------------
PasTim's Profile: http://forums.slimdevices.com/member.php?userid=41642
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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

Reply via email to