mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-01-04 04:59:37 +01:00
Update:Parsing sequence from folder will strip leading zeros #562
This commit is contained in:
parent
f2e16017f6
commit
a8d5b543d7
@ -43,7 +43,6 @@ export default {
|
|||||||
mixins: [bookshelfCardsHelpers],
|
mixins: [bookshelfCardsHelpers],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
routeName: null,
|
|
||||||
routeFullPath: null,
|
routeFullPath: null,
|
||||||
initialized: false,
|
initialized: false,
|
||||||
bookshelfHeight: 0,
|
bookshelfHeight: 0,
|
||||||
@ -632,7 +631,6 @@ export default {
|
|||||||
mounted() {
|
mounted() {
|
||||||
this.initListeners()
|
this.initListeners()
|
||||||
|
|
||||||
this.routeName = this.$route.name // beforeDestroy will have the new route name already, so need to store this
|
|
||||||
this.routeFullPath = window.location.pathname + (window.location.search || '')
|
this.routeFullPath = window.location.pathname + (window.location.search || '')
|
||||||
},
|
},
|
||||||
updated() {
|
updated() {
|
||||||
|
@ -260,6 +260,10 @@ function getBookDataFromDir(folderPath, relPath, parseSubtitle = false) {
|
|||||||
title = title.replace(replaceChunk, '').trim()
|
title = title.replace(replaceChunk, '').trim()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (volumeNumber != null && !isNaN(volumeNumber)) {
|
||||||
|
volumeNumber = String(Number(volumeNumber)) // Strips leading zeros
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var publishedYear = null
|
var publishedYear = null
|
||||||
|
Loading…
Reference in New Issue
Block a user