Skip to content

Commit

Permalink
Open manifest by default, new logo image
Browse files Browse the repository at this point in the history
  • Loading branch information
mervinderuiter committed Sep 15, 2022
1 parent 2939f89 commit db5d61a
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file modified app/plugins/miscellanea/albumart/default.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/plugins/miscellanea/albumart/default.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion http/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ app.use(function (req, res, next) {
if (process.env.NEW_WIZARD === 'true' && fs.existsSync(volumioWizardFlagFile)){
staticMiddlewareWizard(req, res, next);
} else {
if (fs.existsSync(volumioManifestUIDir) && fs.existsSync(volumioManifestUIFlagFile) && !fs.existsSync(volumioManifestUIDisabledFile)){
if (fs.existsSync(volumioManifestUIDir) && !fs.existsSync(volumioManifestUIDisabledFile)){
staticMiddlewareManifestUI(req, res, next);
} else {
if ((userAgent && userAgent.includes('volumiokiosk')) || process.env.VOLUMIO_3_UI === 'false') {
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ expressApp.get('/?*', function (req, res) {
if (process.env.NEW_WIZARD === 'true' && fs.existsSync(volumioWizardFlagFile)){
res.sendFile(path.join(__dirname, 'http', 'wizard', 'index.html'));
} else {
if (fs.existsSync(volumioManifestUIDir) && fs.existsSync(volumioManifestUIFlagFile) && !fs.existsSync(volumioManifestUIDisabledFile)) {
if (fs.existsSync(volumioManifestUIDir) && !fs.existsSync(volumioManifestUIDisabledFile)) {
res.sendFile(path.join(__dirname, 'http', 'www4', 'index.html'));
} else {
if ((userAgent && userAgent.includes('volumiokiosk')) || process.env.VOLUMIO_3_UI === 'false') {
Expand Down

0 comments on commit db5d61a

Please sign in to comment.