Update:default sorting ignore prefixes to just be the #869

This commit is contained in:
advplyr 2022-10-27 17:50:56 -05:00
parent 76d55e72df
commit 1a35def375

View File

@ -47,7 +47,7 @@ class ServerSettings {
// Sorting
this.sortingIgnorePrefix = false
this.sortingPrefixes = ['the', 'a']
this.sortingPrefixes = ['the']
// Misc Flags
this.chromecastEnabled = false
@ -98,7 +98,7 @@ class ServerSettings {
this.bookshelfView = settings.bookshelfView || BookshelfView.STANDARD
this.sortingIgnorePrefix = !!settings.sortingIgnorePrefix
this.sortingPrefixes = settings.sortingPrefixes || ['the', 'a']
this.sortingPrefixes = settings.sortingPrefixes || ['the']
this.chromecastEnabled = !!settings.chromecastEnabled
this.enableEReader = !!settings.enableEReader
this.dateFormat = settings.dateFormat || 'MM/dd/yyyy'