From bd7119c25b868019e5aae100792e90e60ba84a1d Mon Sep 17 00:00:00 2001 From: Romain Date: Mon, 14 Nov 2016 09:46:20 +1100 Subject: [PATCH] Fix invalid default config setting (--sort-albums-by) --- bin/thumbsup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/thumbsup.js b/bin/thumbsup.js index 0783c44..5ab511b 100755 --- a/bin/thumbsup.js +++ b/bin/thumbsup.js @@ -79,7 +79,7 @@ var opts = yargs 'sort-albums-by': { description: 'How to sort albums', choices: ['title', 'start-date', 'end-date'], - default: 'date' + default: 'start-date' }, 'sort-albums-direction': { description: 'Album sorting direction',