Switch to unified view

a/src/mediaserver/cdplugins/plgwithslave.cxx b/src/mediaserver/cdplugins/plgwithslave.cxx
...
...
90
#ifdef ENABLE_SPOTIFY
90
#ifdef ENABLE_SPOTIFY
91
        if (!plg->getname().compare("spotify")) {
91
        if (!plg->getname().compare("spotify")) {
92
            g_config->get("spotifyuser", user);
92
            g_config->get("spotifyuser", user);
93
            g_config->get("spotifypass", password);
93
            g_config->get("spotifypass", password);
94
            string cachedir = path_cat(g_cachedir, "spotify");
94
            string cachedir = path_cat(g_cachedir, "spotify");
95
            // Make sure doingproxy is set, independantly of the
96
            // config variable, which is only useful for Qobuz et al
97
            doingproxy = true;
95
            SpotiProxy::setParams(user, password, cachedir, cachedir);
98
            SpotiProxy::setParams(user, password, cachedir, cachedir);
96
        }
99
        }
97
#endif
100
#endif
98
    }
101
    }
99
102