Switch to unified view

a/src/main.cxx b/src/main.cxx
...
...
364
            sendermpdport = atoi(value.c_str());
364
            sendermpdport = atoi(value.c_str());
365
365
366
        // If a streaming service is enabled (only tidal for now), we
366
        // If a streaming service is enabled (only tidal for now), we
367
        // need a Media Server. The way we implement it depends on the
367
        // need a Media Server. The way we implement it depends on the
368
        // command line option:
368
        // command line option:
369
        if (g_config->hasNameAnywhere("tidaluser")) {
369
        if (g_config->hasNameAnywhere("tidaluser") ||
370
            g_config->hasNameAnywhere("qobuzuser")) {
370
            enableMediaServer = true;
371
            enableMediaServer = true;
371
            switch (msmode) {
372
            switch (msmode) {
372
            case MSOnly:
373
            case MSOnly:
373
                inprocessms = true;
374
                inprocessms = true;
374
                msonly = true;
375
                msonly = true;